mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-09 20:30:28 +01:00
26 lines
876 B
Diff
26 lines
876 B
Diff
--- a/net/minecraft/server/TileEntity.java
|
|
+++ b/net/minecraft/server/TileEntity.java
|
|
@@ -6,6 +6,8 @@
|
|
import org.apache.logging.log4j.LogManager;
|
|
import org.apache.logging.log4j.Logger;
|
|
|
|
+import org.bukkit.inventory.InventoryHolder; // CraftBukkit
|
|
+
|
|
public abstract class TileEntity {
|
|
|
|
private static final Logger a = LogManager.getLogger();
|
|
@@ -244,4 +246,13 @@
|
|
a(TileEntityEndGateway.class, "EndGateway");
|
|
a(TileEntityCommand.class, "Control");
|
|
}
|
|
+
|
|
+ // CraftBukkit start - add method
|
|
+ public InventoryHolder getOwner() {
|
|
+ if (world == null) return null;
|
|
+ org.bukkit.block.BlockState state = world.getWorld().getBlockAt(position.getX(), position.getY(), position.getZ()).getState();
|
|
+ if (state instanceof InventoryHolder) return (InventoryHolder) state;
|
|
+ return null;
|
|
+ }
|
|
+ // CraftBukkit end
|
|
}
|