From 3707ff555143821a4d6ebc733e54d567b565f4ed Mon Sep 17 00:00:00 2001 From: Joey Eamigh <55670930+JoeyEamigh@users.noreply.github.com> Date: Wed, 21 Jun 2023 22:28:58 -0400 Subject: [PATCH] downloader.jar not zip --- client/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/client.py b/client/client.py index 65f531c..6bc293f 100644 --- a/client/client.py +++ b/client/client.py @@ -56,7 +56,7 @@ def run_mmc(): def mods(): os.chdir(INSTANCE_DIR) - if not os.path.exists(os.path.join(INSTANCE_DIR, "downloader.zip")): + if not os.path.exists(os.path.join(INSTANCE_DIR, "downloader.jar")): cprint("downloader.jar not found - downloading", "yellow") r = requests.get(MOD_DOWNLOADER_URL, allow_redirects=True) open("downloader.jar", "wb").write(r.content)