summaryrefslogtreecommitdiffstats
path: root/nms-patches/TileEntityShulkerBox.patch
diff options
context:
space:
mode:
authormd_5 <git@md-5.net>2016-11-17 12:41:03 +1100
committermd_5 <git@md-5.net>2016-11-17 12:41:03 +1100
commitc25ddf063a808e3adb749e22017661f403c5fb7e (patch)
treeb2efcff512be12fd3e38cf8c36386148ce6ab4ae /nms-patches/TileEntityShulkerBox.patch
parent51263e97187a84338f89698eef187284055a682a (diff)
downloadcraftbukkit-c25ddf063a808e3adb749e22017661f403c5fb7e.tar
craftbukkit-c25ddf063a808e3adb749e22017661f403c5fb7e.tar.gz
craftbukkit-c25ddf063a808e3adb749e22017661f403c5fb7e.tar.lz
craftbukkit-c25ddf063a808e3adb749e22017661f403c5fb7e.tar.xz
craftbukkit-c25ddf063a808e3adb749e22017661f403c5fb7e.zip
Update to Minecraft 1.11
Diffstat (limited to 'nms-patches/TileEntityShulkerBox.patch')
-rw-r--r--nms-patches/TileEntityShulkerBox.patch54
1 files changed, 54 insertions, 0 deletions
diff --git a/nms-patches/TileEntityShulkerBox.patch b/nms-patches/TileEntityShulkerBox.patch
new file mode 100644
index 00000000..6af5516b
--- /dev/null
+++ b/nms-patches/TileEntityShulkerBox.patch
@@ -0,0 +1,54 @@
+--- a/net/minecraft/server/TileEntityShulkerBox.java
++++ b/net/minecraft/server/TileEntityShulkerBox.java
+@@ -3,6 +3,10 @@
+ import java.util.Iterator;
+ import java.util.List;
+ import javax.annotation.Nullable;
++// CraftBukkit start
++import org.bukkit.craftbukkit.entity.CraftHumanEntity;
++import org.bukkit.entity.HumanEntity;
++// CraftBukkit end
+
+ public class TileEntityShulkerBox extends TileEntityLootable implements ITickable, IWorldInventory {
+
+@@ -16,6 +20,31 @@
+ private EnumColor l;
+ private boolean p;
+
++ // CraftBukkit start - add fields and methods
++ public List<HumanEntity> transaction = new java.util.ArrayList<HumanEntity>();
++ private int maxStack = MAX_STACK;
++
++ public List<ItemStack> getContents() {
++ return this.f;
++ }
++
++ public void onOpen(CraftHumanEntity who) {
++ transaction.add(who);
++ }
++
++ public void onClose(CraftHumanEntity who) {
++ transaction.remove(who);
++ }
++
++ public List<HumanEntity> getViewers() {
++ return transaction;
++ }
++
++ public void setMaxStackSize(int size) {
++ maxStack = size;
++ }
++ // CraftBukkit end
++
+ public TileEntityShulkerBox() {
+ this((EnumColor) null);
+ }
+@@ -144,7 +173,7 @@
+ }
+
+ public int getMaxStackSize() {
+- return 64;
++ return maxStack; // CraftBukkit
+ }
+
+ public boolean c(int i, int j) {