Add pass after empty elif in Player

This commit is contained in:
Michał Czekański 2020-04-06 00:00:00 +02:00
parent b56269888c
commit 076a377cda

View File

@ -30,7 +30,7 @@ class Player(Entity):
if self.rotation == Rotations.NORTH:
return (0, -1)
elif self.rotation == Rotations.SOUTH:
pass
# Returns given statistic
def getStatistic(self, stat):
if stat.value == StatisticNames.HP: