Skip to content

Commit

Permalink
fix extra facade material recipes being registered
Browse files Browse the repository at this point in the history
  • Loading branch information
TechLord22 committed Aug 11, 2021
1 parent 292ff21 commit cde0631
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,7 @@ public <T extends IRecipeWrapper, V> List<T> getRecipeWrappers(IRecipeCategory<T
}

private static List<IRecipeWrapper> createFacadeRecipes(ItemStack itemStack) {
return Lists.newArrayList(
createFacadeRecipe(itemStack, Materials.Aluminium, 5),
createFacadeRecipe(itemStack, Materials.WroughtIron, 3),
createFacadeRecipe(itemStack, Materials.Iron, 2));
return Lists.newArrayList(createFacadeRecipe(itemStack, Materials.Iron, 4));
}

private static IRecipeWrapper createFacadeRecipe(ItemStack itemStack, Material material, int facadeAmount) {
Expand Down

0 comments on commit cde0631

Please sign in to comment.