summaryrefslogtreecommitdiffstats
path: root/nms-patches/InventoryEnderChest.patch
blob: 2591f07ed6306b1b967a569bba5f25f182a799d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
--- a/net/minecraft/server/InventoryEnderChest.java
+++ b/net/minecraft/server/InventoryEnderChest.java
@@ -1,11 +1,21 @@
 package net.minecraft.server;
 
+import org.bukkit.inventory.InventoryHolder;
+
 public class InventoryEnderChest extends InventorySubcontainer {
 
     private TileEntityEnderChest a;
+    // CraftBukkit start
+    private final EntityHuman owner;
+
+    public InventoryHolder getBukkitOwner() {
+        return owner.getBukkitEntity();
+    }
 
-    public InventoryEnderChest() {
+    public InventoryEnderChest(EntityHuman owner) {
         super("container.enderchest", false, 27);
+        this.owner = owner;
+        // CraftBukkit end
     }
 
     public void a(TileEntityEnderChest tileentityenderchest) {