From b34bcade1af374633b4e0a21f7b9a671030da15c Mon Sep 17 00:00:00 2001 From: Thomas Date: Wed, 20 Mar 2019 11:19:29 -0400 Subject: [PATCH] add bread cooking recipe for bread from minetest game's farming --- modern_ish_ovens/oven.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modern_ish_ovens/oven.lua b/modern_ish_ovens/oven.lua index 8ce64a9..fefc005 100644 --- a/modern_ish_ovens/oven.lua +++ b/modern_ish_ovens/oven.lua @@ -143,4 +143,7 @@ oven.register_recipe("mobs_mc:chicken_raw", "test:chicken_cooked") Recipe won't even be executed if there is no raw chicken in input ]]-- oven.register_recipe("mobs_mc:beef_raw", "test:beef_cooked") oven.register_recipe("farming:coffee_cup", "farming:coffee_cup_hot") -- What a crutch there was... --- Add needed recipes as you go, note that other mods can add more recipes too \ No newline at end of file +-- Add needed recipes as you go, note that other mods can add more recipes too + +--bread from minetest_game's farming +oven.register_recipe("farming:flour", "farming:bread")