summaryrefslogtreecommitdiff
path: root/game/script.rpy
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2020-12-16 18:59:36 -0300
committerJesusaves <cpntb1@ymail.com>2020-12-16 18:59:36 -0300
commitb7d3dc7914aeb50b8beeee40fa9231edce198840 (patch)
tree3272c35547840ef743ff9a39dacb683891c9d2af /game/script.rpy
parent76ddabf046d50f8010ea41be1bd4d1e0ec75b289 (diff)
downloadclient-b7d3dc7914aeb50b8beeee40fa9231edce198840.tar.gz
client-b7d3dc7914aeb50b8beeee40fa9231edce198840.tar.bz2
client-b7d3dc7914aeb50b8beeee40fa9231edce198840.tar.xz
client-b7d3dc7914aeb50b8beeee40fa9231edce198840.zip
Remove deprecated Pinger function
Diffstat (limited to 'game/script.rpy')
-rw-r--r--game/script.rpy9
1 files changed, 1 insertions, 8 deletions
diff --git a/game/script.rpy b/game/script.rpy
index 50e4bad..6009b2d 100644
--- a/game/script.rpy
+++ b/game/script.rpy
@@ -55,7 +55,7 @@ init python:
tr_load=True
tr_val=""
tr_busy=False
- self.send("Ping")
+ self.send("PING")
def onerror(self, err):
stdout("ERROR RECEIVED")
@@ -400,13 +400,6 @@ label prologue:
label quit:
$ stdout("Received quit signal!")
python:
- # Delete pinger
- try:
- Pinger.stop()
- del Pinger
- except:
- pass
-
# Delete ApTimer
try:
ApTimer.cancel()