From c6c00a50a0e074ee9fb7813cd78a4cdf39da8d0d Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Wed, 27 Nov 2019 09:37:14 -0500 Subject: [PATCH] Fixed an issue with the menu. --- numnastics | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/numnastics b/numnastics index 0b57f43..5e710ea 100755 --- a/numnastics +++ b/numnastics @@ -59,7 +59,7 @@ def game(mode): # Game starts at main menu mode = game_menu("start game", "instructions", "donate", "credits", "exit_game") while mode != "exit_game": - if mode == "menu": mode = game_menu("start game", "instructions", "credits", "exit_game") + if mode == "menu": mode = game_menu("start game", "instructions", "donate", "credits", "exit_game") if mode == "start game": mode = game(mode) time.sleep(.001)