Fermentation Station

Link to fermentation-station

ZenScript
Copy
import mods.industrialforegoing.FermentationStation;

The first and second parameters are the input and output fluids respectively.

The example shown below turns 1mB of Lava into 1mB of Blazing Pyrotheum:

ZenScript
Copy
// FermentationStation.add(ILiquidStack fluidInput, ILiquidStack fluidOutput);

FermentationStation.add(<liquid:lava> * 1, <liquid:pyrotheum> * 1);

Put the input fluid in the parameter to remove the recipe for that specific fluid, has to match the fluid amount in the recipe.

The example shown below removes the recipe for 1mB of Lava:

ZenScript
Copy
// FermentationStation.remove(ILiquidStack fluidInput);

FermentationStation.remove(<liquid:lava> * 1);