MCPcopy Create free account
hub / github.com/GregTech6/gregtech6 / outputs

Method outputs

src/main/java/gregapi/util/CR.java:567–567  ·  view source on GitHub ↗

Gives you a list of the Outputs from a Crafting Recipe. If you have multiple Mods, which add Bronze Armor for example

(ItemStack... aRecipe)

Source from the content-addressed store, hash-verified

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();

Callers

nothing calls this directly

Calls 12

listMethod · 0.95
hasValidMethod · 0.95
craftingMethod · 0.95
arraylistMethod · 0.95
copyMethod · 0.95
valisizeMethod · 0.95
getMethod · 0.65
addMethod · 0.65
removeMethod · 0.65
sizeMethod · 0.45
matchesMethod · 0.45
getCraftingResultMethod · 0.45

Tested by

no test coverage detected