diff --git a/nms-patches/net/minecraft/world/inventory/Container.patch b/nms-patches/net/minecraft/world/inventory/Container.patch index 23abb214e..49454f40d 100644 --- a/nms-patches/net/minecraft/world/inventory/Container.patch +++ b/nms-patches/net/minecraft/world/inventory/Container.patch @@ -74,6 +74,15 @@ public void b(ICrafting icrafting) { this.containerListeners.remove(icrafting); } +@@ -338,7 +382,7 @@ + } + } else if (this.quickcraftStatus == 2) { + if (!this.quickcraftSlots.isEmpty()) { +- if (this.quickcraftSlots.size() == 1) { ++ if (false && this.quickcraftSlots.size() == 1) { // CraftBukkit - treat everything as a drag since we are unable to easily call InventoryClickEvent instead + k = ((Slot) this.quickcraftSlots.iterator().next()).index; + this.e(); + this.b(k, this.quickcraftType, InventoryClickType.PICKUP, entityhuman); @@ -349,6 +393,7 @@ l = this.getCarried().getCount(); Iterator iterator = this.quickcraftSlots.iterator();