Skip to content
Thomas B edited this page Mar 13, 2021 · 2 revisions

Oven Crafttweaker support:

import mods.firmalife.Oven;

// Oven.addRecipe(string recipe_name, IIngredient input, ItemStack output, float chance);
Oven.addRecipe("test", <minecraft:stone>, <minecraft:dirt>, 0.5);

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