PaperMC/nms-patches/TileEntityContainer.patch
2019-04-23 12:00:00 +10:00

15 lines
499 B
Diff

--- a/net/minecraft/server/TileEntityContainer.java
+++ b/net/minecraft/server/TileEntityContainer.java
@@ -76,4 +76,12 @@
}
protected abstract Container createContainer(int i, PlayerInventory playerinventory);
+
+ // CraftBukkit start
+ @Override
+ public org.bukkit.Location getLocation() {
+ if (world == null) return null;
+ return new org.bukkit.Location(world.getWorld(), position.getX(), position.getY(), position.getZ());
+ }
+ // CraftBukkit end
}