From 2020ab49da203d1c16d178858de15679026a5ab6 Mon Sep 17 00:00:00 2001 From: Lerking Date: Sat, 19 Apr 2025 10:15:26 +0200 Subject: [PATCH] Update pman.py --- pman.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pman.py b/pman.py index ebb5dea..fd4844f 100644 --- a/pman.py +++ b/pman.py @@ -38,7 +38,7 @@ def main() -> None: hud = HUD(screen_width, screen_height, cherry_image=cherry_img) maze = Maze("maze/pacman_maze.txt") - player = ActorPacman(screen, center=maze.pacman_start) + player = ActorPacman(screen, center=maze.pacman_start, location=maze.pacman_location) ghost_mode_controller = GhostModeController() ghost_home_center = (screen_width // 2, (screen_height) // 2) ghosts = spawn_ghosts(ghost_home_center)