Gives you a list of the Outputs from a Crafting Recipe. If you have multiple Mods, which add Bronze Armor for example
(ItemStack... aRecipe)
| 565 | |
| 566 | /** Gives you a list of the Outputs from a Crafting Recipe. If you have multiple Mods, which add Bronze Armor for example */ |
| 567 | public static List<ItemStack> outputs(ItemStack... aRecipe) {return outputs(list(), F, aRecipe);} |
| 568 | /** Gives you a list of the Outputs from a Crafting Recipe. If you have multiple Mods, which add Bronze Armor for example */ |
| 569 | public static List<ItemStack> outputs(List<IRecipe> aList, boolean aDeleteFromList, ItemStack... aRecipe) { |
| 570 | if (aList == null || !ST.hasValid(aRecipe)) return Collections.emptyList(); |
nothing calls this directly
no test coverage detected