Paper/nms-patches/InventoryEnderChest.patch

32 lines
978 B
Diff
Raw Normal View History

2015-05-25 12:37:24 +02:00
--- a/net/minecraft/server/InventoryEnderChest.java
+++ b/net/minecraft/server/InventoryEnderChest.java
@@ -1,11 +1,27 @@
package net.minecraft.server;
+import org.bukkit.Location;
2016-11-17 02:41:03 +01:00
+import org.bukkit.inventory.InventoryHolder;
+
public class InventoryEnderChest extends InventorySubcontainer {
private TileEntityEnderChest a;
2016-11-17 02:41:03 +01:00
+ // CraftBukkit start
+ private final EntityHuman owner;
+
2016-11-17 02:41:03 +01:00
+ public InventoryHolder getBukkitOwner() {
+ return owner.getBukkitEntity();
+ }
+
+ @Override
+ public Location getLocation() {
+ return new Location(this.a.getWorld().getWorld(), this.a.getPosition().getX(), this.a.getPosition().getY(), this.a.getPosition().getZ());
+ }
2016-11-17 02:41:03 +01:00
- public InventoryEnderChest() {
+ public InventoryEnderChest(EntityHuman owner) {
super("container.enderchest", false, 27);
2016-11-17 02:41:03 +01:00
+ this.owner = owner;
+ // CraftBukkit end
2015-02-26 23:41:06 +01:00
}
2016-11-17 02:41:03 +01:00
public void a(TileEntityEnderChest tileentityenderchest) {