This commit is contained in:
2026-04-17 18:25:43 -04:00
parent e2075ebf64
commit bc7716a894

View File

@@ -131,9 +131,11 @@ class Game:
self.cat = data.save.load(save) self.cat = data.save.load(save)
self.game_loop() self.game_loop()
elif choice == "Quit": elif choice == "Quit":
quit() return
if __name__ == "__main__": if __name__ == "__main__":
game = Game() game = Game()
game.run() game.run()
if os.path.exists("WEB_VERSION"):
print("You have quit the game, please reload the page to play again.")