diff --git a/game.py b/game.py index 5c0cbc5..9575973 100644 --- a/game.py +++ b/game.py @@ -47,7 +47,11 @@ class Game: "Settings", ] else: - options[0:0] = ["Save"] + options[0:0] = [ + "Save", + "Save and quit", + "Quit", + ] while True: match ui.select( @@ -188,7 +192,7 @@ class Game: or os.path.exists("WEB_VERSION") ): options.insert(0, "Load Game") - if not os.path.exists("WEB_VERSION"): + if True: # not os.path.exists("WEB_VERSION"): options.append("Quit") print(f"Welcome to {data.text.GAME_NAME}") while True: