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

Method getFluidOutput

src/main/java/gregapi/recipes/Recipe.java:690–690  ·  view source on GitHub ↗
(long aIndex)

Source from the content-addressed store, hash-verified

688
689 public FluidStack getRepresentativeFluidInput(long aIndex) {if (aIndex < 0 || aIndex >= mFluidInputs.length || mFluidInputs[(int)aIndex] == null) return null; return mFluidInputs[(int)aIndex].copy();}
690 public FluidStack getFluidOutput(long aIndex) {if (aIndex < 0 || aIndex >= mFluidOutputs.length || mFluidOutputs[(int)aIndex] == null) return null; return mFluidOutputs[(int)aIndex].copy();}
691
692 public Recipe copy() {
693 return new Recipe(this);

Callers 2

getFluidOutputsMethod · 0.95
runMethod · 0.80

Calls 1

copyMethod · 0.45

Tested by

no test coverage detected