summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--game/04_init.rpy9
1 files changed, 9 insertions, 0 deletions
diff --git a/game/04_init.rpy b/game/04_init.rpy
index 99359f6..69d9e34 100644
--- a/game/04_init.rpy
+++ b/game/04_init.rpy
@@ -25,6 +25,15 @@ init python:
global tr_load, tr_val, tr_busy
stdout("Server : " + str(message))
+ # Wait wait, it might have been a SERVNOTICE!
+ try:
+ if (message.split(':')[0] == "NOTICE"):
+ renpy.call_screen("msgbox",
+ "{b}SERVER NOTICE{b}\n\n%s" % str(":".join(command.split(':')[1:])))
+ return
+ except:
+ pass
+
# Inform whatever is waiting for us that a reply was obtained
tr_load=True
tr_val=str(message)