diff --git a/monkeyspank b/monkeyspank index e2beaf1..ef1fff3 100755 --- a/monkeyspank +++ b/monkeyspank @@ -47,7 +47,13 @@ def game(mode): taunt = monkey_taunt() timeOut = time.time() while lose == False: - if time.time() - timeOut > 1: + if spanks <= 10 and time.time() - timeOut > 3: + lose = True + continue + elif spanks > 10 and spanks <= 20 and time.time() - timeOut > 2: + lose = True + continue + elif spanks > 20 and time.time() - timeOut > 1: lose = True continue event = pygame.event.poll()