diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2017-01-08 09:56:09 +0000 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2017-01-08 09:56:09 +0000 |
commit | cd26a62cef373ac616449f2457751383d19ca88b (patch) | |
tree | 1e14790726c244849673e46f1b8a751779988ba4 /sapling.lua | |
parent | a54fb59a0e70fc70e141486b68c1b0fa5ed3b573 (diff) |
re-add ethereal saplings into sapling group, bamboo sprouts are edible
Diffstat (limited to 'sapling.lua')
-rw-r--r-- | sapling.lua | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sapling.lua b/sapling.lua index e7704c1..c5ee62f 100644 --- a/sapling.lua +++ b/sapling.lua @@ -20,7 +20,7 @@ minetest.register_node("ethereal:bamboo_sprout", { type = "fixed", fixed = {-4 / 16, -0.5, -4 / 16, 4 / 16, 0, 4 / 16} }, - on_use = minetest.item_eat(-2), + on_use = minetest.item_eat(2), grown_height = 11, }) @@ -44,7 +44,7 @@ ethereal.register_sapling = function(name, desc, texture, height) }, groups = { snappy = 2, dig_immediate = 3, flammable = 2, - ethereal_sapling = 1, attached_node = 1 + ethereal_sapling = 1, attached_node = 1, sapling = 1 }, sounds = default.node_sound_leaves_defaults(), grown_height = height, @@ -226,9 +226,10 @@ minetest.register_abm({ end, }) --- burn saplings +--[[ burn saplings minetest.register_craft({ type = "fuel", recipe = "group:ethereal_sapling", burntime = 10, }) +]]
\ No newline at end of file |