diff options
-rw-r--r-- | game/03_init.rpy | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/game/03_init.rpy b/game/03_init.rpy index 6c858fd..0f5cfd3 100644 --- a/game/03_init.rpy +++ b/game/03_init.rpy @@ -252,7 +252,7 @@ init python: f=open(get_path(addr), "w") stdout("Downloading additional file: %s" % img.replace(" ", "_")) try: - x=requests.get("https://%s/%s?token=%s" % (HOST, img.replace(" ", "_"), get_token())) # , timeout=8.0 → Need to handle sudden death + x=requests.get("https://%s/assets/%s?token=%s" % (HOST, img.replace(" ", "_"), get_token()), verify=False) # , timeout=8.0 → Need to handle sudden death except: # Oh noes - something went *terribly* wrong traceback.print_exc() |