From 631ed14275f8c9e29975d02c55f08cba0cbea000 Mon Sep 17 00:00:00 2001 From: Axy Date: Sat, 29 Aug 2026 13:40:40 +0200 Subject: [PATCH] Fix --- src/pacman/input.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pacman/input.py b/src/pacman/input.py index 5c94f89..8675046 100644 --- a/src/pacman/input.py +++ b/src/pacman/input.py @@ -75,6 +75,7 @@ class GameInput(Input): self.next_move = (1, 0) if self.player.can_move() and self.next_move: self.player.go_to(self.next_move) + self.next_move = None @override def get_event(self, event: pygame.event.Event) -> None: -- 2.53.0