From 089f5500e6904a1b89a2729d67c8e4318816fc7a Mon Sep 17 00:00:00 2001 From: modmuss50 Date: Sun, 7 Jun 2015 14:27:19 +0100 Subject: [PATCH] removed unneeded debug code --- src/main/java/techreborn/api/recipe/RecipeCrafter.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/java/techreborn/api/recipe/RecipeCrafter.java b/src/main/java/techreborn/api/recipe/RecipeCrafter.java index 5414b9005..f93cd0010 100644 --- a/src/main/java/techreborn/api/recipe/RecipeCrafter.java +++ b/src/main/java/techreborn/api/recipe/RecipeCrafter.java @@ -150,7 +150,6 @@ public class RecipeCrafter { ArrayList filledSlots = new ArrayList();//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]);