Updated Bukkit to 1.21.7

This commit is contained in:
OakLoaf
2025-06-30 16:47:29 +01:00
parent 118aeb872f
commit 9b14b0ee96
27 changed files with 31 additions and 31 deletions

View File

@@ -54,8 +54,8 @@ public interface Initializer {
private static Initializer constructInitializer() {
try {
String packageVersion = NMS;
if (NMS.equals("v1_21_5")) {
packageVersion = "v1_21_6";
if (NMS.equals("v1_21_5") || NMS.equals("v1_21_6")) {
packageVersion = "v1_21_7";
}
Class<?> initializerClass = Class.forName(TERRA_PACKAGE + "." + packageVersion + ".NMSInitializer");