Fixes patterns always returning a recipe. (#4495)

This commit is contained in:
yueh
2020-07-24 22:39:38 +02:00
committed by GitHub
parent d01aa28cdc
commit 2ac27fd9ce
2 changed files with 4 additions and 2 deletions
@@ -109,7 +109,7 @@ public class CraftingPatternDetails implements ICraftingPatternDetails, Comparab
this.standardRecipe = null;
this.correctOutput = ItemStack.EMPTY;
for (int x = 0; x < 3; x++) {
for (int x = 0; x < products.size(); x++) {
final IAEItemStack ais = products.get(x);
final ItemStack gs = ais.createItemStack();