diff options
-rw-r--r-- | game/client.rpy | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/game/client.rpy b/game/client.rpy index 0a41e32..4c80ad7 100644 --- a/game/client.rpy +++ b/game/client.rpy @@ -176,7 +176,8 @@ init 2 python: ## Theirs try: installdir=get_path("manaplus") - fname=handle_client(launch=True, download=False).split("/").pop() + if (persistent.evol2cli != "builtin"): # FIXME Simplify + fname=handle_client(launch=True, download=False).split("/").pop() r=requests.get(persistent.host+"/%s.md5" % fname, timeout=10.0) md5up=r.text.replace("\n", "") except: |