Replace 1.21.9 with 1.21.10

This commit is contained in:
James Seibel
2025-10-10 07:35:37 -05:00
parent c42f800db5
commit 7b0a9d4843
28 changed files with 95 additions and 59 deletions
+3 -1
View File
@@ -42,8 +42,10 @@ def writeBuildGradlePredefine(List<String> mcVers, int mcIndex)
String verStr = mcVers[i].replace(".", "_");
sb.append("MC_" + verStr + "=" + i.toString() + "\n");
if (mcIndex == i)
if (mcIndex == i)
{
sb.append("MC_VER=" + i.toString() + "\n");
}
}