From 3d130ecdd5c6cdc75688e25c19f7969c57beb622 Mon Sep 17 00:00:00 2001 From: Owen Feldman Date: Wed, 29 Apr 2026 17:09:21 -0400 Subject: [PATCH] fix bug on desktop --- game.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/game.py b/game.py index 3a45007..35b4484 100644 --- a/game.py +++ b/game.py @@ -179,7 +179,11 @@ class Game: return options = ["New Game", "Release Notes", "Credits"] - if os.path.exists("saves") or os.path.exists("WEB_VERSION"): + if ( + os.path.exists("saves") + and os.listdir("saves") + or os.path.exists("WEB_VERSION") + ): options.insert(0, "Load Game") if not os.path.exists("WEB_VERSION"): options.append("Quit")