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