Coke Oven
Calling The Package
You can call the CokeOven package using mods.immersiveengineering.CokeOven
.
Add Recipe
Required | Type | Data Type |
---|---|---|
Required Required | Type Output | Data Type IItemstack |
Required Required | Type Fuel Output | Data Type Integer |
Required Required | Type Input | Data Type IIngredient |
Required Required | Type Time | Data Type Integer |
Example
//Example:mods.immersiveengineering.CokeOven.addRecipe(IItemStack output, int fuelOutput, IIngredient input, int time);mods.immersiveengineering.CokeOven.addRecipe(<minecraft:coal>, 2, <ore:logWood>, 2000);
Remove Recipe
Type | Data Type |
---|---|
Type Output | Data Type IItemstack |
Example:
//Example:mods.immersiveengineering.CokeOven.removeRecipe(IItemStack output);mods.immersiveengineering.CokeOven.removeRecipe(<minecraft:diamond>);