9
0
mirror of https://github.com/HibiscusMC/HibiscusCommons.git synced 2025-12-19 15:09:26 +00:00

feat: add 1.21.6 support

This commit is contained in:
LoJoSho
2025-06-19 14:15:04 -05:00
parent e4618e4a42
commit 4e7dbf5ed9
8 changed files with 503 additions and 1 deletions

View File

@@ -10,6 +10,7 @@ public enum MinecraftVersion {
v1_21_3,
v1_21_4,
v1_21_5,
v1_21_6,
;
public boolean isHigher(MinecraftVersion other) {

View File

@@ -19,6 +19,7 @@ public class NMSHandlers {
put(MinecraftVersion.v1_21_3, "v1_21_R2");
put(MinecraftVersion.v1_21_4, "v1_21_R3");
put(MinecraftVersion.v1_21_5, "v1_21_R4");
put(MinecraftVersion.v1_21_6, "v1_21_R5");
}};
private static NMSHandler handler;