Skip to content

Commit

Permalink
Roll back versions of Forge & NeoForge to versions that support J17
Browse files Browse the repository at this point in the history
  • Loading branch information
Moulberry committed Feb 4, 2025
1 parent 7f1b65c commit 7ff8d39
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ dependencies {

"fabricImplementation"("net.fabricmc:fabric-loader:0.15.0")

"forgeImplementation"("net.minecraftforge:fmlloader:1.20.6-50.1.0")
"forgeImplementation"("net.minecraftforge:fmlcore:1.20.6-50.1.0")
"forgeImplementation"("net.minecraftforge:fmlloader:1.20.1-47.3.27")
"forgeImplementation"("net.minecraftforge:fmlcore:1.20.1-47.3.27")

"neoforgeImplementation"("net.neoforged.fancymodloader:loader:3.0.45")
"neoforgeImplementation"("net.neoforged.fancymodloader:loader:3.0.13")
}

tasks.jar {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ protected String getModVersion(String modid) {
MixinConstraints.LOGGER.warn("Multiple mods with id {} found, using first one", modid);
}

return infoList.getFirst().getVersion().toString();
return infoList.get(0).getVersion().toString();
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ protected String getModVersion(String modid) {
MixinConstraints.LOGGER.warn("Multiple mods with id {} found, using first one", modid);
}

return infoList.getFirst().getVersion().toString();
return infoList.get(0).getVersion().toString();
}

@Override
Expand Down

0 comments on commit 7ff8d39

Please sign in to comment.