From 06c21d26681cd99e0fd140ef835547a911da373d Mon Sep 17 00:00:00 2001 From: modmuss50 Date: Sun, 7 Jun 2015 11:11:07 +0100 Subject: [PATCH] this was the issue all along This would be the easy fix to my last commit. --- src/main/java/techreborn/api/recipe/RecipeCrafter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/techreborn/api/recipe/RecipeCrafter.java b/src/main/java/techreborn/api/recipe/RecipeCrafter.java index 9b8245bd1..5414b9005 100644 --- a/src/main/java/techreborn/api/recipe/RecipeCrafter.java +++ b/src/main/java/techreborn/api/recipe/RecipeCrafter.java @@ -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]); } }