From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 From: Zach Brown Date: Tue, 28 Aug 2018 23:04:15 -0400 Subject: [PATCH] Inventory#removeItemAnySlot diff --git a/src/main/java/org/bukkit/craftbukkit/inventory/CraftInventory.java b/src/main/java/org/bukkit/craftbukkit/inventory/CraftInventory.java index 1820ea381094e14205bc9d2a4c78140f1ff20ec7..0b515bcf772518e1396a3503bbb510b7224995d2 100644 --- a/src/main/java/org/bukkit/craftbukkit/inventory/CraftInventory.java +++ b/src/main/java/org/bukkit/craftbukkit/inventory/CraftInventory.java @@ -218,10 +218,16 @@ public class CraftInventory implements Inventory { } private int first(ItemStack item, boolean withAmount) { + // Paper start + return first(item, withAmount, getStorageContents()); + } + + private int first(ItemStack item, boolean withAmount, ItemStack[] inventory) { + // Paper end if (item == null) { return -1; } - ItemStack[] inventory = this.getStorageContents(); + // ItemStack[] inventory = this.getStorageContents(); // Paper - let param deal for (int i = 0; i < inventory.length; i++) { if (inventory[i] == null) continue; @@ -344,6 +350,17 @@ public class CraftInventory implements Inventory { @Override public HashMap removeItem(ItemStack... items) { + // Paper start + return removeItem(false, items); + } + + @Override + public HashMap removeItemAnySlot(ItemStack... items) { + return removeItem(true, items); + } + + private HashMap removeItem(boolean searchEntire, ItemStack... items) { + // Paper end Preconditions.checkArgument(items != null, "items cannot be null"); HashMap leftover = new HashMap(); @@ -355,7 +372,10 @@ public class CraftInventory implements Inventory { int toDelete = item.getAmount(); while (true) { - int first = this.first(item, false); + // Paper start - Allow searching entire contents + ItemStack[] toSearch = searchEntire ? getContents() : getStorageContents(); + int first = this.first(item, false, toSearch); + // Paper end // Drat! we don't have this type in the inventory if (first == -1) {