Hunger now starts from 0

This commit is contained in:
Marcin Kostrzewski 2020-04-06 00:52:34 +02:00
parent 6b279ce47f
commit b110ee9f34

View File

@ -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