Skip to content
Thomas B edited this page Mar 13, 2021 · 1 revision

Cracking Crafttweaker support :

import mods.firmalife.Cracking;

// Cracking.addRecipe(IIngredient input, ItemStack output, float chance);
Cracking.addRecipe(<minecraft:stone>, <minecraft:dirt>, 0.5);

// Cracking.removeRecipe(string recipe_name);
// Cracking.removeRecipe(IItemStack output);
// you can remove by recipe name or by the Output.
Cracking.removeRecipe("firmalife:recipe_name");
Cracking.removeRecipe(<minecraft:leather>);
Clone this wiki locally