diff options
Diffstat (limited to 'src/game_state.py')
| -rw-r--r-- | src/game_state.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game_state.py b/src/game_state.py index 41e7985..d942ae1 100644 --- a/src/game_state.py +++ b/src/game_state.py @@ -32,7 +32,7 @@ class GameState(): self.is_pacman_alive = True def reset(self, sprites ,settings): - self.pacman = Player(sprites[0]) + self.pacman = Player(sprites[0],settings) self.blinky = Blinky(sprites[1], 12 * TILE_WIDTH + 15, 12 * TILE_HEIGHT + 15,settings) self.pinky = Pinky(sprites[2], 11 * TILE_WIDTH + |
