diff options
author | txtsd <thexerothermicsclerodermoid@gmail.com> | 2022-07-10 15:44:17 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-10 15:44:17 +0530 |
commit | c1bcbf8c63ef4543fdf0d5529089721d2b4a01dd (patch) | |
tree | ba215e37de2560dbe0430c3d8bb6128f9310a3e7 /launcher/modplatform/modpacksch/FTBPackInstallTask.cpp | |
parent | 3b187b5246e1ad32bf672e1ef79686b3d14dcbcc (diff) | |
parent | 301b811310ce03454deb5167a1d05ddbd82a8007 (diff) | |
download | PrismLauncher-c1bcbf8c63ef4543fdf0d5529089721d2b4a01dd.tar.gz PrismLauncher-c1bcbf8c63ef4543fdf0d5529089721d2b4a01dd.tar.bz2 PrismLauncher-c1bcbf8c63ef4543fdf0d5529089721d2b4a01dd.zip |
Merge pull request #880 from Scrumplex/fix-loader-importance
Make loader components not important
Diffstat (limited to 'launcher/modplatform/modpacksch/FTBPackInstallTask.cpp')
-rw-r--r-- | launcher/modplatform/modpacksch/FTBPackInstallTask.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/launcher/modplatform/modpacksch/FTBPackInstallTask.cpp b/launcher/modplatform/modpacksch/FTBPackInstallTask.cpp index c324ffda..cac432cd 100644 --- a/launcher/modplatform/modpacksch/FTBPackInstallTask.cpp +++ b/launcher/modplatform/modpacksch/FTBPackInstallTask.cpp @@ -216,10 +216,10 @@ void PackInstallTask::install() if(target.type != "modloader") continue; if(target.name == "forge") { - components->setComponentVersion("net.minecraftforge", target.version, true); + components->setComponentVersion("net.minecraftforge", target.version); } else if(target.name == "fabric") { - components->setComponentVersion("net.fabricmc.fabric-loader", target.version, true); + components->setComponentVersion("net.fabricmc.fabric-loader", target.version); } } |