Fix Basil (NPC 7) missing animation frame

This commit is contained in:
periwinkle
2026-04-19 07:20:35 +02:00
committed by alula
parent 123f747dd1
commit 7f41df5160
+1 -1
View File
@@ -324,7 +324,7 @@ impl NPC {
self.vel_x = clamp(self.vel_x, -0x5ff, 0x5ff);
self.x += self.vel_x;
self.animate(1, 0, 1);
self.animate(1, 0, 2);
let dir_offset = if self.direction == Direction::Left { 0 } else { 3 };