public interface IStillManager extends ICraftingProvider<IStillRecipe>
The manager is initialized at the beginning of Forestry's BaseMod.load() cycle. Begin adding recipes in BaseMod.ModsLoaded() and this shouldn't be null even if your mod loads before Forestry.
Accessible via RecipeManagers
Note that this is untested with anything other than biomass->biofuel conversion.
| Modifier and Type | Method and Description |
|---|---|
void |
addRecipe(int cyclesPerUnit,
net.minecraftforge.fluids.FluidStack input,
net.minecraftforge.fluids.FluidStack output)
Add a recipe to the still
|
addRecipe, recipes, removeRecipevoid addRecipe(int cyclesPerUnit,
net.minecraftforge.fluids.FluidStack input,
net.minecraftforge.fluids.FluidStack output)
cyclesPerUnit - Amount of work cycles required to run through the conversion once.input - FluidStack representing the input liquid.output - FluidStack representing the output liquid