summaryrefslogtreecommitdiff
path: root/game/script.rpy
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2020-12-17 15:38:34 -0300
committerJesusaves <cpntb1@ymail.com>2020-12-17 15:38:34 -0300
commit55574bdf66cf0e93f3089e0702423dd74bb59715 (patch)
treea7476cdc9b97eb8da61748b89fcd4ec7acbd4e3a /game/script.rpy
parent0f8983e7e6920ee210772664d2330a0943332fb2 (diff)
downloadclient-55574bdf66cf0e93f3089e0702423dd74bb59715.tar.gz
client-55574bdf66cf0e93f3089e0702423dd74bb59715.tar.bz2
client-55574bdf66cf0e93f3089e0702423dd74bb59715.tar.xz
client-55574bdf66cf0e93f3089e0702423dd74bb59715.zip
Improve registration screen
Diffstat (limited to 'game/script.rpy')
-rw-r--r--game/script.rpy8
1 files changed, 4 insertions, 4 deletions
diff --git a/game/script.rpy b/game/script.rpy
index da20c6f..e910d89 100644
--- a/game/script.rpy
+++ b/game/script.rpy
@@ -68,11 +68,11 @@ label start:
menu:
"tr_load is [tr_load]\ntr_busy is [tr_busy]"
"Send ping":
- $ send_packet_now('PING')
- "Send formatted packet":
- $ send_packet_now('TOKEN;PACKET;')
+ $ send_packet('PING')
+ "Send malformatted packet":
+ $ send_packet('TOKEN;PACKET;')
"Send invalid packet":
- $ send_packet_now('INVALID PACKET')
+ $ send_packet('INVALID PACKET')
# Check if we need to register
if persistent.password is None: