diff options
-rw-r--r-- | game/script.rpy | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/game/script.rpy b/game/script.rpy index 7638ac8..50e4bad 100644 --- a/game/script.rpy +++ b/game/script.rpy @@ -66,9 +66,14 @@ init python: while True: renpy.call_screen("msgbox", "An unrecoverable error happened.\nPress OK to return to main menu screen.") + #raise KeyboardException(str(err)) + #raise err # FIXME: Not working, and the loop also does not work + # Maybe because it causes an Exception? + # I wonder if I can/should run this in a non-daemon thread? #renpy.quit(relaunch=True, status=1) sdelay(1.0) + return 1 # Inform you are now ingame label start: |