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