Drying
Link to drying
The Drying
package allows you to add or remove Drying recipes.
Calling
Link to calling
You can call the Drying package using mods.tconstruct.Drying
Adding
Link to adding
The time is in ticks
ZenScript Copy//mods.tconstruct.Drying.addRecipe(IItemStack output, IIngredient input, int time);
mods.tconstruct.Drying.addRecipe(<minecraft:leather>,<minecraft:rotten_flesh>, 100);
Removing
Link to removing
ZenScript Copy//mods.tconstruct.Drying.removeRecipe(IItemStack output);
mods.tconstruct.Drying.removeRecipe(<minecraft:leather>);
//mods.tconstruct.Drying.removeRecipe(IItemStack output, IItemStack input);
mods.tconstruct.Drying.removeRecipe(<minecraft:leather>, <minecraft:rotten_flesh>);