102103104105106107108
return this.recipeOutput; } public WrappedStack[] getRecipeInputs() { return new WrappedStack[]{inputStack, new WrappedStack(dustStack)}; }
108109110111112113114115116
} public List<WrappedStack> getRecipeInputsAsWrappedStacks() { List<WrappedStack> recipeInputs = new ArrayList<WrappedStack>(); recipeInputs.add(new WrappedStack(inputStack)); recipeInputs.add(new WrappedStack(dustStack)); return recipeInputs; }