diff --git a/PlayerState.py b/PlayerState.py index 27d7878..8c00458 100644 --- a/PlayerState.py +++ b/PlayerState.py @@ -73,7 +73,7 @@ class PlayerState: activationTime = random.randrange(config.BONUS_TIME_MIN_RANDOM_TIME, config.BONUS_TIME_MAX_RANDOM_TIME) self.timeAdvanceLeftTimer = Timer(activationTime, self.timeAdvanceLeft) - def timeAdvanceLeft(self): + def timeAdvanceRight(self): choiceList = [True] * int(config.BONUS_TIME_ACTIVATION_PROBABILITY * 100) \ + [False] * int((1 - config.BONUS_TIME_ACTIVATION_PROBABILITY) * 100)