diff options
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 |