From 2f2f53bedbe74f374cbd2993a45ac9b528d13890 Mon Sep 17 00:00:00 2001 From: Owen Feldman Date: Fri, 17 Apr 2026 18:47:21 -0400 Subject: [PATCH] More info --- game.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/game.py b/game.py index 9038f68..6af6c38 100644 --- a/game.py +++ b/game.py @@ -155,7 +155,9 @@ if __name__ == "__main__": try: game = Game() game.run() - except: # horrible coding right here + except Exception as e: # horrible coding right here + print("Developer stuff incoming, if you can, tell me what this says:") + print(e) print( - "Welp, seems that the game crashed, idk why. A common cause of this is pressing CTRL+C, which will cancel some UI stuff and just break the game. If you're on the desktop version, reopen it, if you're on the web version, reload, and don't use CTRL+C." + "Welp, seems that the game crashed, idk why. A common cause of this is pressing CTRL+C, which will cancel some UI stuff and just break the game. If you're on the desktop version, reopen it, if you're on the web version, reload, and don't use CTRL+C.\nOtherwise, great job! You found an issue in the game! If you can, please tell me." )