Fix downward facing fans pointing upwards

This commit is contained in:
Awesomegamer6566 2022-11-01 10:54:59 -07:00 committed by alula
parent 713e704b9b
commit 0f79474aae
1 changed files with 1 additions and 1 deletions

View File

@ -927,7 +927,7 @@ impl NPC {
}
if self.anim_counter == 0 {
self.anim_rect = state.constants.npc.n097_fan_up[self.anim_num as usize];
self.anim_rect = state.constants.npc.n099_fan_down[self.anim_num as usize];
}
Ok(())