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.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/nms-patches/InventoryCraftResult.patch b/nms-patches/InventoryCraftResult.patch
index 9434a528..a87e7e42 100644
--- a/nms-patches/InventoryCraftResult.patch
+++ b/nms-patches/InventoryCraftResult.patch
@@ -12,7 +12,7 @@
public class InventoryCraftResult implements IInventory {
- private ItemStack[] items = new ItemStack[1];
+ private final ItemStack[] items = new ItemStack[1];
+ // CraftBukkit start
+ private int maxStack = MAX_STACK;