summaryrefslogtreecommitdiffstats
path: root/nms-patches/InventoryCraftResult.patch
diff options
context:
space:
mode:
Diffstat (limited to 'nms-patches/InventoryCraftResult.patch')
-rw-r--r--nms-patches/InventoryCraftResult.patch48
1 files changed, 48 insertions, 0 deletions
diff --git a/nms-patches/InventoryCraftResult.patch b/nms-patches/InventoryCraftResult.patch
new file mode 100644
index 00000000..af51f97f
--- /dev/null
+++ b/nms-patches/InventoryCraftResult.patch
@@ -0,0 +1,48 @@
+--- ../work/decompile-bb26c12b/net/minecraft/server/InventoryCraftResult.java 2014-11-27 08:59:46.761421583 +1100
++++ src/main/java/net/minecraft/server/InventoryCraftResult.java 2014-11-27 08:42:10.140850934 +1100
+@@ -1,8 +1,36 @@
+ package net.minecraft.server;
+
++// CraftBukkit start
++import org.bukkit.craftbukkit.entity.CraftHumanEntity;
++import org.bukkit.entity.HumanEntity;
++// CraftBukkit end
++
+ public class InventoryCraftResult implements IInventory {
+
+ private ItemStack[] items = new ItemStack[1];
++
++ // CraftBukkit start
++ private int maxStack = MAX_STACK;
++
++ public ItemStack[] getContents() {
++ return this.items;
++ }
++
++ public org.bukkit.inventory.InventoryHolder getOwner() {
++ return null; // Result slots don't get an owner
++ }
++
++ // Don't need a transaction; the InventoryCrafting keeps track of it for us
++ public void onOpen(CraftHumanEntity who) {}
++ public void onClose(CraftHumanEntity who) {}
++ public java.util.List<HumanEntity> getViewers() {
++ return new java.util.ArrayList<HumanEntity>();
++ }
++
++ public void setMaxStackSize(int size) {
++ maxStack = size;
++ }
++ // CraftBukkit end
+
+ public InventoryCraftResult() {}
+
+@@ -53,7 +81,7 @@
+ }
+
+ public int getMaxStackSize() {
+- return 64;
++ return maxStack; // CraftBukkit
+ }
+
+ public void update() {}