}
ItemIdentifier ident = item.getItem();
for(int j=0;j<inv.getSizeInventory();j++) {
item = inv.getIDStackInSlot(j);
if(item == null) continue;
if(isFuzzy ? (testFuzzy(ident, item, i)) : ident.equalsForCrafting(item.getItem())) {
if(item.getStackSize() > used[j]) {
used[j]++;
toUse[i] = j;
continue outer;
}