summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-05-08 21:17:28 -0300
committerJesusaves <cpntb1@ymail.com>2021-05-08 21:17:28 -0300
commit39b70c02685e840c3d862d191f361c081ff5d493 (patch)
tree932a6132ffa74bc159e3e209fa1fbd543a56bbeb
parent9cc80ef7eff698c0f2891c5326b22d8484850260 (diff)
downloadrenpy-39b70c02685e840c3d862d191f361c081ff5d493.tar.gz
renpy-39b70c02685e840c3d862d191f361c081ff5d493.tar.bz2
renpy-39b70c02685e840c3d862d191f361c081ff5d493.tar.xz
renpy-39b70c02685e840c3d862d191f361c081ff5d493.zip
Too much trouble; Do NOT fetch server backgrounds anymore.
-rw-r--r--game/update.rpy2
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