We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df8b063 commit 5bd58c5Copy full SHA for 5bd58c5
installer/main.py
@@ -14,7 +14,7 @@
14
"win32": "win",
15
"darwin": "macos",
16
}[sys.platform]
17
-BEPINEX = f"733/BepInEx-Unity.IL2CPP-{OS}-x64-6.0.0-be.733%2B995f049"
+BEPINEX = "https://polymod.dev/data/bepinex.txt"
18
POLYMOD = "https://api.github.com/repos/PolyModdingTeam/PolyMod/releases"
19
20
@@ -65,7 +65,7 @@ def prepare(target):
65
def install(path):
66
to_zip(
67
requests.get(
68
- f"https://builds.bepinex.dev/projects/bepinex_be/{BEPINEX}.zip"
+ requests.get(BEPINEX).text.strip().replace("{os}", OS)
69
)
70
).extractall(path)
71
progress_bar.step()
0 commit comments