aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/recipe
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/gregtech/api/recipe')
-rw-r--r--src/main/java/gregtech/api/recipe/RecipeMapBackend.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/gregtech/api/recipe/RecipeMapBackend.java b/src/main/java/gregtech/api/recipe/RecipeMapBackend.java
index f78e367adf..1122eaf869 100644
--- a/src/main/java/gregtech/api/recipe/RecipeMapBackend.java
+++ b/src/main/java/gregtech/api/recipe/RecipeMapBackend.java
@@ -277,8 +277,8 @@ public class RecipeMapBackend {
public void reInit() {
itemIndex.clear();
for (GTRecipe recipe : allRecipes()) {
- GTOreDictUnificator.setStackArray(true, recipe.mInputs);
- GTOreDictUnificator.setStackArray(true, recipe.mOutputs);
+ GTOreDictUnificator.setStackArray(true, true, recipe.mInputs);
+ GTOreDictUnificator.setStackArray(true, true, recipe.mOutputs);
addToItemMap(recipe);
}
}