summaryrefslogtreecommitdiffstats
path: root/nms-patches/TileEntityContainer.patch
blob: 3484ee4f413ca4d0e2b620bf84302c91cfecb1b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--- a/net/minecraft/server/TileEntityContainer.java
+++ b/net/minecraft/server/TileEntityContainer.java
@@ -37,4 +37,11 @@
     public IChatBaseComponent getScoreboardDisplayName() {
         return (IChatBaseComponent) (this.hasCustomName() ? new ChatComponentText(this.getName()) : new ChatMessage(this.getName(), new Object[0]));
     }
+
+    // CraftBukkit start
+    @Override
+    public org.bukkit.Location getLocation() {
+        return new org.bukkit.Location(world.getWorld(), position.getX(), position.getY(), position.getZ());
+    }
+    // CraftBukkit end
 }