Added 1.21.8 bukkit support

This commit is contained in:
OakLoaf 2025-07-17 15:13:01 +01:00
parent 9f546370cd
commit 8788eab839

View File

@ -47,7 +47,7 @@ public interface Initializer {
private static PlatformImpl constructPlatform(TerraBukkitPlugin plugin) { private static PlatformImpl constructPlatform(TerraBukkitPlugin plugin) {
try { try {
String packageVersion = NMS; String packageVersion = NMS;
if (NMS.equals("v1_21_5") || NMS.equals("v1_21_6")) { if (NMS.equals("v1_21_5") || NMS.equals("v1_21_6") || NMS.equals("v1_21_8")) {
packageVersion = "v1_21_7"; packageVersion = "v1_21_7";
} }