aboutsummaryrefslogtreecommitdiff
path: root/codegen/lib
diff options
context:
space:
mode:
Diffstat (limited to 'codegen/lib')
-rw-r--r--codegen/lib/download.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/codegen/lib/download.py b/codegen/lib/download.py
index 7d14a3a3..58074634 100644
--- a/codegen/lib/download.py
+++ b/codegen/lib/download.py
@@ -23,7 +23,7 @@ def get_version_manifest():
print(
f'\033[92mDownloading version manifest...\033[m')
version_manifest_data = requests.get(
- 'https://launchermeta.mojang.com/mc/game/version_manifest.json').json()
+ 'https://piston-meta.mojang.com/mc/game/version_manifest.json').json()
with open(f'downloads/version_manifest.json', 'w') as f:
json.dump(version_manifest_data, f)
else: