Microwave
The Microwave heats up food items.
Default Microwave Recipes
- Beef -> Cooked Beef
- Porkchop -> Cooked Porkchop
- Potato -> Baked Potato
- Chicken -> Cooked Chicken
- Fish -> Cooked Fish
- Salmon -> Cooked Salmon
- Flesh -> Cooked Flesh
Removing
Remove matching oven recipes.
mods.cfm.Oven.remove(@Optional final IIngredient output, @Optional final IIngredient input);
// Remove recipes that result in Cooked Fleshmods.cfm.Oven.remove(<cfm:item_flesh_cooked>);// Remove recipes that require a Potatomods.cfm.Oven.remove(null,<minecraft:potato>);// Remove all recipesmods.cfm.Oven.remove();
Adding
Add an oven recipe.
mods.cfm.Oven.addRecipe(@Nonnull final IItemStack output, @Nonnull final IItemStack input);
// Add a recipe that makes two apples from one stickmods.cfm.Oven.addRecipe(<minecraft:apple>.withAmount(2),<minecraft:stick>);