diff --git a/src/entities/Player.py b/src/entities/Player.py index 57d8207..d7742f2 100644 --- a/src/entities/Player.py +++ b/src/entities/Player.py @@ -12,7 +12,7 @@ class Player(Entity): super().__init__("player.png", size, (spawnpoint[0] * size, spawnpoint[1] * size)) # Where the player is facing, 0 - north, 1 self.rotation = Rotations.NORTH - self.statistics = Statistics(100, 100, 0, 100) + self.statistics = Statistics(100, 0, 0, 100) # How many steps has the player taken through its lifetime self.movePoints = 0