-
Notifications
You must be signed in to change notification settings - Fork 35
Drying CT
Thomas B edited this page Mar 13, 2021
·
1 revision
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>);