From c1f765c8ee0a1db24ff8cf870450922bf88aadd7 Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Sat, 15 Mar 2025 04:23:51 -0400 Subject: [PATCH] Updated the menu to use the new improved game_menu(). --- libstormgames | 2 +- wicked_quest.py | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/libstormgames b/libstormgames index 2ad22ff..fe772cb 160000 --- a/libstormgames +++ b/libstormgames @@ -1 +1 @@ -Subproject commit 2ad22ff1ae18303711280bf51f159ad02a93c0aa +Subproject commit fe772cbb1e924b99be38b168a8c0d49009433201 diff --git a/wicked_quest.py b/wicked_quest.py index a0efd14..9e502d6 100755 --- a/wicked_quest.py +++ b/wicked_quest.py @@ -319,8 +319,7 @@ class WickedQuest: pass while True: - choice = game_menu(self.sounds, "play", "high_scores", "instructions", - "learn_sounds", "credits", "donate", "exit") + choice = game_menu(self.sounds, "high_scores") if choice == "exit": exit_game()