summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2020-12-31 11:22:31 -0300
committerJesusaves <cpntb1@ymail.com>2020-12-31 11:22:31 -0300
commit7a7f942325ef36baa2f03b5f62aa210ba0a73aad (patch)
treed6b8c0fb3dcb4786b673cf1670b8af83662c5c4e
parent09e6c79cef45b42c54cab44bb54f36265c3fbdca (diff)
downloadclient-7a7f942325ef36baa2f03b5f62aa210ba0a73aad.tar.gz
client-7a7f942325ef36baa2f03b5f62aa210ba0a73aad.tar.bz2
client-7a7f942325ef36baa2f03b5f62aa210ba0a73aad.tar.xz
client-7a7f942325ef36baa2f03b5f62aa210ba0a73aad.zip
When we receive a K-Lined message, stall the program for 30 seconds before
rebooting. A K-Line ought to last longer than that, though...
-rw-r--r--game/04_init.rpy2
1 files changed, 2 insertions, 0 deletions
diff --git a/game/04_init.rpy b/game/04_init.rpy
index 7117dcc..dee432f 100644
--- a/game/04_init.rpy
+++ b/game/04_init.rpy
@@ -65,6 +65,8 @@ init python:
global TERMINATE
if err == "Quit":
return
+ elif err == "K-Lined":
+ sdelay(30.0) # We are banned, so pretend it is just taking long...
stdout("ERROR RECEIVED")
stdout("More details: %s" % repr(err))