summaryrefslogtreecommitdiffstats
path: root/nms-patches/ContainerChest.patch
diff options
context:
space:
mode:
Diffstat (limited to 'nms-patches/ContainerChest.patch')
-rw-r--r--nms-patches/ContainerChest.patch59
1 files changed, 59 insertions, 0 deletions
diff --git a/nms-patches/ContainerChest.patch b/nms-patches/ContainerChest.patch
new file mode 100644
index 00000000..7021c61b
--- /dev/null
+++ b/nms-patches/ContainerChest.patch
@@ -0,0 +1,59 @@
+--- ../work/decompile-bb26c12b/net/minecraft/server/ContainerChest.java 2014-11-27 08:59:46.605422269 +1100
++++ src/main/java/net/minecraft/server/ContainerChest.java 2014-11-27 08:42:10.172850872 +1100
+@@ -1,15 +1,48 @@
+ package net.minecraft.server;
+
++// CraftBukkit start
++import org.bukkit.craftbukkit.inventory.CraftInventory;
++import org.bukkit.craftbukkit.inventory.CraftInventoryView;
++// CraftBukkit end
++
+ public class ContainerChest extends Container {
+
+ public IInventory container;
+ private int f;
++ // CraftBukkit start
++ private CraftInventoryView bukkitEntity = null;
++ private PlayerInventory player;
++
++ @Override
++ public CraftInventoryView getBukkitView() {
++ if (bukkitEntity != null) {
++ return bukkitEntity;
++ }
++
++ CraftInventory inventory;
++ if (this.container instanceof PlayerInventory) {
++ inventory = new org.bukkit.craftbukkit.inventory.CraftInventoryPlayer((PlayerInventory) this.container);
++ } else if (this.container instanceof InventoryLargeChest) {
++ inventory = new org.bukkit.craftbukkit.inventory.CraftInventoryDoubleChest((InventoryLargeChest) this.container);
++ } else {
++ inventory = new CraftInventory(this.container);
++ }
++
++ bukkitEntity = new CraftInventoryView(this.player.player.getBukkitEntity(), inventory, this);
++ return bukkitEntity;
++ }
++ // CraftBukkit end
+
+ public ContainerChest(IInventory iinventory, IInventory iinventory1, EntityHuman entityhuman) {
+ this.container = iinventory1;
+ this.f = iinventory1.getSize() / 9;
+ iinventory1.startOpen(entityhuman);
+ int i = (this.f - 4) * 18;
++
++ // CraftBukkit start - Save player
++ // TODO: Should we check to make sure it really is an InventoryPlayer?
++ this.player = (PlayerInventory) iinventory;
++ // CraftBukkit end
+
+ int j;
+ int k;
+@@ -33,6 +66,7 @@
+ }
+
+ public boolean a(EntityHuman entityhuman) {
++ if (!this.checkReachable) return true; // CraftBukkit
+ return this.container.a(entityhuman);
+ }
+