Drying CT - eerussianguy/firmalife GitHub Wiki
Drying Crafttweaker support:
import mods.firmalife.Drying;
// Drying.addRecipe(string recipe_name, IIngredient input, ItemStack output, int duration);
Drying.addRecipe("test", <minecraft:stone>, <minecraft:dirt>, 5);
// Drying.removeRecipe(string recipe_name);
// Drying.removeRecipe(IItemStack output);
// you can remove by recipe name or by the Output.
Drying.removeRecipe("firmalife:recipe_name");
Drying.removeRecipe(<minecraft:leather>);