summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTenPlus1 <kinsellaja@yahoo.com>2017-01-27 18:53:38 +0000
committerTenPlus1 <kinsellaja@yahoo.com>2017-01-27 18:53:38 +0000
commitbeb4130e37503fa6231e9e5938959c13612f2459 (patch)
tree2c254a6f69bd27be38209843bb363dd2efa0b7c4
parent3eb482a8c06382776e091ded5f9c6dd40d5ed3e0 (diff)
can use musrhroom pore and bushes as fuel
-rw-r--r--leaves.lua24
1 files changed, 24 insertions, 0 deletions
diff --git a/leaves.lua b/leaves.lua
index 1998e0b..5f1c40c 100644
--- a/leaves.lua
+++ b/leaves.lua
@@ -305,6 +305,12 @@ minetest.register_node("ethereal:mushroom_pore", {
sounds = default.node_sound_dirt_defaults(),
})
+minetest.register_craft({
+ type = "fuel",
+ recipe = "ethereal:mushroom_pore",
+ burntime = 3,
+})
+
-- hedge block
minetest.register_node("ethereal:bush", {
description = S("Bush"),
@@ -323,6 +329,12 @@ minetest.register_craft({
}
})
+minetest.register_craft({
+ type = "fuel",
+ recipe = "ethereal:bush",
+ burntime = 1,
+})
+
-- bush block #2
minetest.register_node("ethereal:bush2", {
drawtype = "allfaces_optional",
@@ -343,6 +355,12 @@ minetest.register_craft({
}
})
+minetest.register_craft({
+ type = "fuel",
+ recipe = "ethereal:bush2",
+ burntime = 1,
+})
+
-- bush block #3
minetest.register_node("ethereal:bush3", {
drawtype = "allfaces_optional",
@@ -362,3 +380,9 @@ minetest.register_craft({
{"group:leaves", "group:leaves", "group:leaves"},
}
})
+
+minetest.register_craft({
+ type = "fuel",
+ recipe = "ethereal:bush3",
+ burntime = 1,
+})