From e6f7f3b98b2f46b3e5de117b6ceff45a50d9bad7 Mon Sep 17 00:00:00 2001 From: Herp Derpinstine Date: Thu, 26 Sep 2024 12:05:46 -0600 Subject: [PATCH] Fixed an issue with older Cpp2IL versions causing a download failure --- Dependencies/Il2CppAssemblyGenerator/Packages/Cpp2IL.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dependencies/Il2CppAssemblyGenerator/Packages/Cpp2IL.cs b/Dependencies/Il2CppAssemblyGenerator/Packages/Cpp2IL.cs index 64700d393..5b84f46ed 100644 --- a/Dependencies/Il2CppAssemblyGenerator/Packages/Cpp2IL.cs +++ b/Dependencies/Il2CppAssemblyGenerator/Packages/Cpp2IL.cs @@ -48,8 +48,9 @@ internal Cpp2IL() if (MelonUtils.IsWindows) { if (VersionSem < NetCoreMinVersion) - URL += "-Netframework472"; - URL += ".exe"; + URL += "-Netframework472.zip"; + else + URL += ".exe"; } }