From 580432b32876738b06d1f53207b03f9ed9ecd02f Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Thu, 12 Jan 2017 01:23:22 +0100 Subject: [PATCH] Make bowl a furnace fuel --- mods/default/crafting.lua | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/mods/default/crafting.lua b/mods/default/crafting.lua index d6e1240bc..e2856e5b8 100644 --- a/mods/default/crafting.lua +++ b/mods/default/crafting.lua @@ -764,8 +764,6 @@ minetest.register_craft({ } }) - - minetest.register_craft({ output = 'default:snowblock', recipe = { @@ -1062,6 +1060,12 @@ minetest.register_craft({ burntime = 5, }) +minetest.register_craft({ + type = "fuel", + recipe = "default:bowl", + burntime = 5, +}) + minetest.register_craft({ type = "fuel", recipe = "default:stick",