diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-05-08 18:07:13 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-05-08 18:07:13 -0300 |
commit | c0c0a4cd148737b64680375345512799812cf687 (patch) | |
tree | 464308da60d81e8d6d4758fac349c2cc4a4cac8f | |
parent | 7c454b7b7bb4e5bfa490dcbfc5ec3dd32403c9b2 (diff) | |
download | renpy-c0c0a4cd148737b64680375345512799812cf687.tar.gz renpy-c0c0a4cd148737b64680375345512799812cf687.tar.bz2 renpy-c0c0a4cd148737b64680375345512799812cf687.tar.xz renpy-c0c0a4cd148737b64680375345512799812cf687.zip |
I forgot a critical "break" statement
-rw-r--r-- | game/update.rpy | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/game/update.rpy b/game/update.rpy index 1a3adf5..4fc2d33 100644 --- a/game/update.rpy +++ b/game/update.rpy @@ -122,6 +122,7 @@ init python: try: if not update_serverlist(host): raise Exception("Mirror serverlist error") + break except: stdout("An error happened on mirror \"%s\"." % host.split("//")[1]) stdout("\nTrying next mirror...\n") |