diff options
-rw-r--r-- | game/core.rpy | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/game/core.rpy b/game/core.rpy index 11cca64..18d08e9 100644 --- a/game/core.rpy +++ b/game/core.rpy @@ -35,11 +35,14 @@ init -3 python: if (persistent.client is None): persistent.client = "manaplus" if (persistent.iconify is None): - persistent.iconify = False + persistent.iconify = True ############################################################################# - #, "themanaworld.org", "germantmw.de", "moubootaurlegends.org"] - VAULT_HOST = "http://localhost:13370" + # ["themanaworld.org", "germantmw.de", "moubootaurlegends.org"] + if config.developer: + VAULT_HOST = "http://localhost:13370" + else: + VAULT_HOST = "http://api.tmw2.org:13370" ############################################################################# # Encodes something to md5 |