Fixed an issue with the menu.

This commit is contained in:
Storm Dragon 2019-11-27 09:37:14 -05:00
parent a1a116ee03
commit c6c00a50a0
1 changed files with 1 additions and 1 deletions

View File

@ -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)