1
0
Fork 0
mirror of https://github.com/doukutsu-rs/doukutsu-rs synced 2024-09-28 21:19:24 +00:00

Don't draw NPC 0

This commit is contained in:
dawnDus 2022-03-06 11:15:39 -05:00
parent 067bcc5c8b
commit cb7b2bd402
No known key found for this signature in database
GPG key ID: 972AABDE81848F21

View file

@ -24,8 +24,8 @@ impl NPC {
self.anim_rect.left = 0;
self.anim_rect.top = 0;
self.anim_rect.right = 16;
self.anim_rect.bottom = 16;
self.anim_rect.right = 0;
self.anim_rect.bottom = 0;
Ok(())
}