summaryrefslogtreecommitdiff
path: root/game/04_init.rpy
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2020-12-16 20:23:37 -0300
committerJesusaves <cpntb1@ymail.com>2020-12-16 20:23:37 -0300
commit173d2f23c7ee54c86e61f3b03b6110dd7e1ab858 (patch)
tree3f0bdddb969e33e410771d73e7ca8828a572c715 /game/04_init.rpy
parent39f416a804e730f889d9f4541a5d427ead4a24ad (diff)
downloadclient-173d2f23c7ee54c86e61f3b03b6110dd7e1ab858.tar.gz
client-173d2f23c7ee54c86e61f3b03b6110dd7e1ab858.tar.bz2
client-173d2f23c7ee54c86e61f3b03b6110dd7e1ab858.tar.xz
client-173d2f23c7ee54c86e61f3b03b6110dd7e1ab858.zip
Fix typos
Diffstat (limited to 'game/04_init.rpy')
-rw-r--r--game/04_init.rpy6
1 files changed, 3 insertions, 3 deletions
diff --git a/game/04_init.rpy b/game/04_init.rpy
index 7cbf54a..b5449f5 100644
--- a/game/04_init.rpy
+++ b/game/04_init.rpy
@@ -23,16 +23,16 @@ init python:
# Same as ondata?
def onmsg(self, message):
global tr_load, tr_val, tr_busy
- stdout("Server : " + message)
+ stdout("Server : " + str(message))
# Inform whatever is waiting for us that a reply was obtained
tr_load=True
- tr_val=str(received)
+ tr_val=str(message)
# We do not clean tr_busy here
return
def ondata(self, msg, dtype, cont):
- #print("data received")
+ #print("INFO: data received\n")
"""
on_data: callback object which is called when a message received.
This is called before on_message or on_cont_message,