diff --git a/src/main/java/alexndr/plugins/Fusion/modsupport/jei/FusionFurnaceRecipeWrapper.java b/src/main/java/alexndr/plugins/Fusion/modsupport/jei/FusionFurnaceRecipeWrapper.java index 3108b30e..78172d6a 100644 --- a/src/main/java/alexndr/plugins/Fusion/modsupport/jei/FusionFurnaceRecipeWrapper.java +++ b/src/main/java/alexndr/plugins/Fusion/modsupport/jei/FusionFurnaceRecipeWrapper.java @@ -26,22 +26,19 @@ public FusionFurnaceRecipeWrapper(IJeiHelpers jeiHelpers, RecipeEntry recipe) this.catalyst = stackHelper.toItemStackList(recipe.catalyst.getOre()); } else { - this.catalyst = stackHelper.toItemStackList(new ItemStack(recipe.catalyst.getItem(), - recipe.catalyst.getAmount())); + this.catalyst = new ArrayList(recipe.catalyst.itemsList()); } if (recipe.input1 instanceof DictMaterial) { this.input1 = stackHelper.toItemStackList(recipe.input1.getOre()); } else { - this.input1 = stackHelper.toItemStackList(new ItemStack(recipe.input1.getItem(), - recipe.input1.getAmount())); + this.input1 = new ArrayList(recipe.input1.itemsList()); } if (recipe.input2 instanceof DictMaterial) { this.input2 = stackHelper.toItemStackList(recipe.input2.getOre()); } else { - this.input2 = stackHelper.toItemStackList(new ItemStack(recipe.input2.getItem(), - recipe.input2.getAmount())); + this.input2 = new ArrayList(recipe.input2.itemsList()); } } // end ctor