More info

This commit is contained in:
2026-04-17 18:47:21 -04:00
parent bd8567e9f7
commit 2f2f53bedb

View File

@@ -155,7 +155,9 @@ if __name__ == "__main__":
try: try:
game = Game() game = Game()
game.run() 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( 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."
) )