Skip to content
Fr4gtastic edited this page Mar 25, 2021 · 2 revisions

Oven Crafttweaker support:

import mods.firmalife.Oven;

// Oven.addRecipe(string recipe_name, IIngredient input, ItemStack output, int duration);
Oven.addRecipe("test", <minecraft:stone>, <minecraft:dirt>, 2000);

// 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