Bottling Machine
Calling The Package
You can call the BottlingMachine package using mods.immersiveengineering.BottlingMachine
.
Add Recipe
Required | Type | Data Type |
---|---|---|
Required Required | Type Output | Data Type IItemstack |
Required Required | Type Input | Data Type IIngredient |
Required Required | Type Fluid | Data Type Fluidstack |
Example
//Example:mods.immersiveengineering.BottlingMachine.addRecipe(IItemStack output, IIngredient input, ILiquidStack fluid);mods.immersiveengineering.BottlingMachine.addRecipe(<minecraft:diamond>, <ore:logWood>, <liquid:water>);
Remove Recipe
Type | Data Type |
---|---|
Type Output | Data Type IItemstack |
Example
//Example:mods.immersiveengineering.BottlingMachine.removeRecipe(IItemStack output);mods.immersiveengineering.BottlingMachine.removeRecipe(<minecraft:diamond>);