Paper/nms-patches/TileEntityContainer.patch
2018-07-15 10:00:00 +10:00

16 lines
483 B
Diff

--- a/net/minecraft/server/TileEntityContainer.java
+++ b/net/minecraft/server/TileEntityContainer.java
@@ -34,4 +34,12 @@
public void setLock(ChestLock chestlock) {
this.a = chestlock;
}
+
+ // 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
}