From 17e6d3afaa9e249db9103b92b6a6f4bad929d708 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Thu, 12 Jan 2017 03:09:31 +0100 Subject: [PATCH] Add blaze rod as fuel --- mods/mobs/item.lua | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/mods/mobs/item.lua b/mods/mobs/item.lua index 3aec16122..ec17b309a 100644 --- a/mods/mobs/item.lua +++ b/mods/mobs/item.lua @@ -197,3 +197,9 @@ minetest.register_craft({ cooktime = 10, }) +minetest.register_craft({ + type = "fuel", + recipe = "mobs:blaze_rod", + burntime = 120, +}) +