diff options
Diffstat (limited to 'game/update.rpy')
-rw-r--r-- | game/update.rpy | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/game/update.rpy b/game/update.rpy index 9db65bd..7620dc8 100644 --- a/game/update.rpy +++ b/game/update.rpy @@ -36,6 +36,7 @@ init python: stdout("Validation for server \"%s\" FAILED!" % name) ## Fetch server background (optional) if successful + """ if (ok): bgname="bg_%s.png" % (name.replace(" ", "")) if os.path.exists(get_path(bgname)): @@ -49,6 +50,7 @@ init python: except: traceback.print_exc() stdout("Background error for server \"%s\"." % name) + """ return ok |