fix: properly support MC 1.21.4

- Also, loading screen textures will now be loaded way earlier on NeoForge :)
This commit is contained in:
Martin Prokoph
2025-12-11 20:07:24 +01:00
parent 2611a29107
commit 11c8ba6837
12 changed files with 122 additions and 43 deletions

View File

@@ -21,9 +21,9 @@ stonecutter {
fun mc(loader: String, vararg versions: String) {
for (version in versions) vers("$version-$loader", version)
}
mc("fabric","1.20.1", "1.21.1", "1.21.5", "1.21.8", "1.21.10", "1.21.11")
mc("fabric","1.20.1", "1.21.1", "1.21.4", "1.21.5", "1.21.8", "1.21.10", "1.21.11")
//WARNING: neoforge uses mods.toml instead of neoforge.mods.toml for versions 1.20.4 (?) and earlier
mc("neoforge", "1.21.1", "1.21.5", "1.21.8", "1.21.10", "1.21.11")
mc("neoforge", "1.21.1", "1.21.4", "1.21.5", "1.21.8", "1.21.10", "1.21.11")
}
create(rootProject)
}