Fixed stray classpath from older version of Spigot

This commit is contained in:
David Berdik 2018-12-27 21:51:32 -05:00
parent fb403977f2
commit 24efae96ae

View File

@ -965,7 +965,7 @@ public class CmdExecutor implements CommandExecutor {
double x = Herobrine.herobrineNPC.getNMSEntity().locX;
double y = Herobrine.herobrineNPC.getNMSEntity().locY;
double z = Herobrine.herobrineNPC.getNMSEntity().locZ;
net.minecraft.server.v1_12_R1.World world = Herobrine.herobrineNPC.getNMSEntity().getWorld();
net.minecraft.server.v1_13_R2.World world = Herobrine.herobrineNPC.getNMSEntity().getWorld();
sender.sendMessage(red + "Herobrine's location world: " + world + " x: " + x + " y: " + y +
" z: " + z);