diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-05-17 22:32:39 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-05-17 22:32:39 -0300 |
commit | 906a1b6d140d5652d7581e1153fb70e5a23788e2 (patch) | |
tree | 815549b22169b7b51d0fc98496e3ffb6eb9acd55 /game | |
parent | b5ad43c7d552f8275d0a364372b2b9d891e3c849 (diff) | |
download | renpy-906a1b6d140d5652d7581e1153fb70e5a23788e2.tar.gz renpy-906a1b6d140d5652d7581e1153fb70e5a23788e2.tar.bz2 renpy-906a1b6d140d5652d7581e1153fb70e5a23788e2.tar.xz renpy-906a1b6d140d5652d7581e1153fb70e5a23788e2.zip |
Add new field to server list spec: Type (defaults to "evol2")
Diffstat (limited to 'game')
-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 3d5c302..81ce586 100644 --- a/game/update.rpy +++ b/game/update.rpy @@ -29,6 +29,8 @@ init python: print("Help: %s" % srv["Help"]) print("Online List: %s" % srv["Online"]) print("Policy: %s" % srv["Policy"]) + if not "Type" in srv.keys(): + srv["Type"]="evol2" stdout("Server \"%s\" is valid! Downloading assets..." % name) ok=True except: |