9
0
mirror of https://github.com/WiIIiam278/HuskSync.git synced 2025-12-19 14:59:21 +00:00

add DataVersion 1.21.11 (#630)

This commit is contained in:
AO
2025-12-11 07:22:10 +08:00
committed by GitHub
parent c227933b3b
commit 3c66b65ac6

View File

@@ -43,6 +43,7 @@ public interface DataVersionSupplier {
int VERSION1_21_8 = 4438;
int VERSION1_21_9 = 4554;
int VERSION1_21_10 = 4556;
int VERSION1_21_11 = 4671;
/**
* Returns the data version for a Minecraft version
@@ -70,7 +71,8 @@ public interface DataVersionSupplier {
case "1.21.8" -> VERSION1_21_8;
case "1.21.9" -> VERSION1_21_9;
case "1.21.10" -> VERSION1_21_10;
default -> VERSION1_21_10; // Latest supported version
case "1.21.11" -> VERSION1_21_11;
default -> VERSION1_21_11; // Latest supported version
};
}