fix 3+ version number ranges

This commit is contained in:
James Seibel
2026-05-20 17:30:33 -05:00
parent 95b2d5a908
commit a8b62b31a1
4 changed files with 42 additions and 40 deletions
+5 -1
View File
@@ -484,7 +484,11 @@ if (isNotCommonProject) {
"META-INF/neoforge.mods.toml",
]
def compatible_forgemc_versions = "${rootProject.compatible_minecraft_versions}".replaceAll("\"", "").replaceAll("]", ",)")
// incoming format: `["26.2.0","26.2-alpha.9"]`
// outgoing format: `[26.2.0],[26.2-alpha.9]`
def compatible_forgemc_versions = "${rootProject.compatible_minecraft_versions}"
.replaceAll("\",\"", "],[")
.replaceAll("\"", "")
// Quilt contributors
def quilt_contributors = []