Fixed: statistics now change by invoking methods instead of variable change
This commit is contained in:
parent
a0bbee30d1
commit
dc7023adfa
@ -14,7 +14,7 @@ class Player(Entity):
|
||||
|
||||
# Move in a desired direction
|
||||
def move(self, rotation):
|
||||
self.statistics.stamina -= 1
|
||||
self.statistics.set_stamina(-1)
|
||||
if rotation.value == Rotations.NORTH.value:
|
||||
self.rect.y -= self.rect.w
|
||||
elif rotation.value == Rotations.EAST.value:
|
||||
|
Loading…
Reference in New Issue
Block a user