This is a simple implementation for a drying rack for TerraFirmaCraft: The Next Generation.
You just need to craft a drying rack, place your items on it with right click and wait.
Recipes can have a chance of success.
There are config options for:
Crafttweaker compatibility is present:
//Importing the module
import mods.tfcdryingrack.Rack;
//Adding a recipe
Rack.addRecipe(String registryName, IIngredient input, ItemStack output, int hours, float chance);
//Removing recipe by name
Rack.removeRecipe(String registryName);
//Remove recipe by input
Rack.removeRecipe(IIngredient input);