this was the issue all along

This would be the easy fix to my last commit.
This commit is contained in:
modmuss50 2015-06-07 11:11:07 +01:00
parent efba3f247d
commit 06c21d2668

View file

@ -152,7 +152,7 @@ public class RecipeCrafter {
for (int i = 0; i < currentRecipe.getOutputsSize(); i++) {
System.out.println(currentRecipe.getOutput(i).stackSize);
if (!filledSlots.contains(outputSlots[i])) {//checks it has not been filled
fitStack(currentRecipe.getOutput(i), outputSlots[i]);//fills the slot with the output stack
fitStack(currentRecipe.getOutput(i).copy(), outputSlots[i]);//fills the slot with the output stack
filledSlots.add(outputSlots[i]);
}
}