Toaster
The Toaster crips up food to start your day.
Default Toaster Recipes
- Beef -> Cooked Beef
- Sausage -> Cooked Sausage
- Kebab -> Cooked Kebab
Removing
Remove matching toaster recipes.
mods.cfm.Toaster.remove(@Optional final IIngredient output, @Optional final IIngredient input);
// Remove recipes that make Toast from a Bread Slicemods.cfm.Toaster.remove(<cfm:item_toast>,<cfm:item_bread_slice>);// Remove all recipesmods.cfm.Toaster.remove();
Adding
Add a toaster recipe. Only supports inputs of size 1.
mods.cfm.Toaster.addRecipe(@Nonnull final IItemStack output, @Nonnull final IItemStack input);
// Add a recipe that makes Bread from Wheatmods.cfm.Toaster.addRecipe(<minecraft:bread>,<minecraft:wheat>);// Add a recipe that makes Cooked Beef from Beefmods.cfm.Toaster.addRecipe(<minecraft:cooked_beef>,<minecraft:beef>);