Fixed disappearing items

This commit is contained in:
modmuss50 2015-05-26 17:29:01 +01:00
parent fcf33289de
commit d6a1c9724b

View file

@ -188,6 +188,7 @@ public class RecipeCrafter {
for (int inputSlot : inputSlots) {//Uses all of the inputs
if (ItemUtils.isItemEqual(input, inventory.getStackInSlot(inputSlot), true, true, true)) {
inventory.decrStackSize(inputSlot, input.stackSize);
break;
}
}
}