-
Notifications
You must be signed in to change notification settings - Fork 9
Heat Sawmill
Note: log to planks recipers are automatically generated and cannot be removed by CraftTweaker. If you do not want them you'll need to disable them in Prodigy Tech's config.
import mods.prodigytech.heatsawmill
addRecipe(IItemStack/IOreDictEntry in, IItemStack out, @Optional int time)
Adds a recipe that takes in
as input and gives out
in time
ticks (at 80°C). If time
is omitted it defaults to the config's base value.
Note: if an item has both a valid itemstack recipe and oredict recipe, the itemstack recipe takes priority
addRecipe(IItemStack/IOreDictEntry in, IItemStack out, IItemStack sec, @Optional int time)
Adds a recipe that takes in
as input and gives out
and sec
in time
ticks (at 80°C). If time
is omitted it defaults to the config's base value.
Note: if an item has both a valid itemstack recipe and oredict recipe, the itemstack recipe takes priority
removeRecipe(IItemStack/IOreDictEntry in)
Removes the recipe that takes in
as input.
removeAll()
Removes all recipes.