uhc kit fix

This commit is contained in:
2025-02-16 19:57:36 +01:00
parent 0652bb1a7e
commit c6448beac2

View File

@@ -107,6 +107,14 @@ public class WolfFfaCommand implements CommandExecutor, TabCompleter {
player.getInventory().setItem(24, water); player.getInventory().setItem(24, water);
player.getInventory().setItem(40, shield); player.getInventory().setItem(40, shield);
World world = Bukkit.getWorld("world");
double x = 0.5;
double y = 1.0;
double z = -1000.5;
float yaw = (float) 0;
float pitch = (float) 0;
Location loc = new Location(world, x, y, z, yaw, pitch);
player.teleport(loc);
} }
} }
break; break;