diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2015-12-13 11:31:15 +0000 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2015-12-13 11:31:15 +0000 |
commit | 433ecb1ee6bc9359f179962bcb63fe22789c384c (patch) | |
tree | 883e29f6300eb3f0033f0cdbe17c14c9e418a7b0 /plantlife.lua | |
parent | e89f662344efd55c6a027bbf46974cb060eb3087 (diff) |
Fire flower and fire dust can be used as fuel
Diffstat (limited to 'plantlife.lua')
-rw-r--r-- | plantlife.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/plantlife.lua b/plantlife.lua index dae2fcc..acb998b 100644 --- a/plantlife.lua +++ b/plantlife.lua @@ -26,6 +26,12 @@ minetest.register_node("ethereal:fire_flower", { end, }) +minetest.register_craft({ + type = "fuel", + recipe = "ethereal:fire_flower", + burntime = 60, +}) + -- Fire Dust minetest.register_craftitem("ethereal:fire_dust", { description = "Fire Dust", @@ -39,6 +45,12 @@ minetest.register_craft({ } }) +minetest.register_craft({ + type = "fuel", + recipe = "ethereal:fire_dust", + burntime = 30, +}) + -- Fern (boston) minetest.register_node("ethereal:fern", { description = "Fern", |