1
0
Fork 0
mirror of https://github.com/doukutsu-rs/doukutsu-rs synced 2024-11-22 05:33:02 +00:00

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

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