Implemented Inventory.contains with a minimum amount of item required. As per feature request #187

Dieser Commit ist enthalten in:
Limb 2011-01-24 07:42:59 +08:00 committet von Warren
Ursprung c1c61b73c9
Commit e77b080d83

Datei anzeigen

@ -83,7 +83,29 @@ public class CraftInventory implements org.bukkit.inventory.Inventory {
}
return false;
}
public boolean contains(int materialId, int amount) {
for (ItemStack item: getContents()) {
if (item.getTypeId() == materialId && item.getAmount() >= amount) {
return true;
}
}
return false;
}
public boolean contains(Material material, int amount) {
return contains(material.getId(), amount);
}
public boolean contains(ItemStack item, int amount) {
for (ItemStack i: getContents()) {
if (item.equals(i) && item.getAmount() >= amount) {
return true;
}
}
return false;
}
public HashMap<Integer, CraftItemStack> all(int materialId) {
HashMap<Integer, CraftItemStack> slots = new HashMap<Integer, CraftItemStack>();