mirror of
https://github.com/HibiscusMC/HibiscusCommons.git
synced 2025-12-19 15:09:26 +00:00
feat: add 1.21.5 support
This commit is contained in:
@@ -8,7 +8,9 @@ public enum MinecraftVersion {
|
||||
v1_20_6,
|
||||
v1_21_1,
|
||||
v1_21_3,
|
||||
v1_21_4;
|
||||
v1_21_4,
|
||||
v1_21_5,
|
||||
;
|
||||
|
||||
public boolean isHigher(MinecraftVersion other) {
|
||||
return this.ordinal() > other.ordinal();
|
||||
|
||||
@@ -18,6 +18,7 @@ public class NMSHandlers {
|
||||
// 1.20.2 is not supported; was imminently bumped to 1.21.3
|
||||
put(MinecraftVersion.v1_21_3, "v1_21_R2");
|
||||
put(MinecraftVersion.v1_21_4, "v1_21_R3");
|
||||
put(MinecraftVersion.v1_21_5, "v1_21_R4");
|
||||
}};
|
||||
|
||||
private static NMSHandler handler;
|
||||
|
||||
Reference in New Issue
Block a user