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
1 changed files with 2 additions and 2 deletions

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(())
}