removed unneeded debug code
This commit is contained in:
parent
3605fa7f66
commit
089f5500e6
1 changed files with 0 additions and 1 deletions
|
@ -150,7 +150,6 @@ public class RecipeCrafter {
|
|||
ArrayList<Integer> filledSlots = new ArrayList<Integer>();//The slots that have been filled
|
||||
if (canGiveInvAll && currentRecipe.onCraft(parentTile)) {
|
||||
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).copy(), outputSlots[i]);//fills the slot with the output stack
|
||||
filledSlots.add(outputSlots[i]);
|
||||
|
|
Loading…
Reference in a new issue