diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-08-18 00:41:47 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-08-18 00:41:47 -0300 |
commit | a878b43f3c44a4b604c291688b7d108e790370c6 (patch) | |
tree | b2cd132f2554cf1aaa24c5b73477573c536bd50f /game/script.rpy | |
parent | 5977a645fb300ca3df3e091a947647e51f9eab3e (diff) | |
download | client-2.1.8.18.tar.gz client-2.1.8.18.tar.bz2 client-2.1.8.18.tar.xz client-2.1.8.18.zip |
Version 2.1.8.18v2.1.8.18
Detect outdated client/server and report
Diffstat (limited to 'game/script.rpy')
-rw-r--r-- | game/script.rpy | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/game/script.rpy b/game/script.rpy index 619d532..5f548c5 100644 --- a/game/script.rpy +++ b/game/script.rpy @@ -70,6 +70,9 @@ label login: if (message == ERR_LOGIN_DEFAULT): e "Error Code: [message]{fast}\n\nCould not estabilish connection to server." jump login + elif (message == ERR_OUTDATED): + e "A new update is available!\n\nPlease download it from app store or at {a=https://spheres.tmw2.org/download}spheres.tmw2.org{/a}." + jump quit else: e "Error Code: [message]{fast}\n\nCannot login to server. Terminating." jump quit |