diff --git a/paper-server/nms-patches/net/minecraft/world/inventory/Container.patch b/paper-server/nms-patches/net/minecraft/world/inventory/Container.patch index 4aa7e067b0..df523c7efc 100644 --- a/paper-server/nms-patches/net/minecraft/world/inventory/Container.patch +++ b/paper-server/nms-patches/net/minecraft/world/inventory/Container.patch @@ -65,6 +65,15 @@ public void removeSlotListener(ICrafting icrafting) { this.containerListeners.remove(icrafting); } +@@ -325,7 +369,7 @@ + } + + public ItemStack quickMoveStack(EntityHuman entityhuman, int i) { +- return ((Slot) this.slots.get(i)).getItem(); ++ return ItemStack.EMPTY; // CraftBukkit - previous implementation was useless and broken + } + + public void clicked(int i, int j, InventoryClickType inventoryclicktype, EntityHuman entityhuman) { @@ -381,7 +425,7 @@ } } else if (this.quickcraftStatus == 2) {