From 4eb28d58f8efb8faf6b6889e4ebda0722312bfcb Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Tue, 10 Dec 2019 14:13:11 -0500 Subject: [PATCH] More sounds, improved learn sounds. --- monkeyspank | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/monkeyspank b/monkeyspank index c9a23de..f241e16 100755 --- a/monkeyspank +++ b/monkeyspank @@ -133,13 +133,13 @@ def game(mode): return "menu" # Game starts at main menu -mode = game_menu("start game", "instructions", "donate", "credits", "learn sounds", "exit_game") +mode = game_menu(sounds, "start game", "instructions", "donate", "credits", "learn sounds", "exit_game") while mode != "exit_game": bonus = False bonusTime = time.time() spanks = 0 points = 0 - if mode == "menu": mode = game_menu("start game", "instructions", "donate", "credits", "learn sounds", "exit_game") + if mode == "menu": mode = game_menu(sounds, "start game", "instructions", "donate", "credits", "learn sounds", "exit_game") if mode == "start game": mode = game(mode) if mode == "learn sounds": mode = learn_sounds(sounds) time.sleep(0.001)