diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-12-18 14:33:52 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-12-18 14:33:52 -0300 |
commit | 71256a95179811a5fa98a4a95644e651f1e26a07 (patch) | |
tree | b607509ed6d9aa4b38e8550e249fe61108d2d530 /game | |
parent | f320a81084dbeaa3d08e2cbe5b9c8c240bba4858 (diff) | |
download | client-71256a95179811a5fa98a4a95644e651f1e26a07.tar.gz client-71256a95179811a5fa98a4a95644e651f1e26a07.tar.bz2 client-71256a95179811a5fa98a4a95644e651f1e26a07.tar.xz client-71256a95179811a5fa98a4a95644e651f1e26a07.zip |
Fix a problem where an outdated client would return to main menu without at
least attempting to close the socket first
Diffstat (limited to 'game')
-rw-r--r-- | game/party.rpy | 2 | ||||
-rw-r--r-- | game/script.rpy | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/game/party.rpy b/game/party.rpy index 7847d4d..54c3042 100644 --- a/game/party.rpy +++ b/game/party.rpy @@ -132,6 +132,8 @@ label party_lobby: jump party_lobby + + label party_lobby_enter: play music MUSIC_PARTY.id() fadein 0.5 $ hud_clear() diff --git a/game/script.rpy b/game/script.rpy index 1b3aad8..7615715 100644 --- a/game/script.rpy +++ b/game/script.rpy @@ -93,7 +93,7 @@ label login: jump login else: e "Error Code: [message]{fast}\n\nCannot login to server. Terminating." - return + jump quit # Successful login? Update client data and begin routines |