diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2016-08-19 17:22:09 +0100 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2016-08-19 17:22:09 +0100 |
commit | 4643128bea08a977c32e10bfc8260d1a91e2451e (patch) | |
tree | 61cd54d3d1828cc7f18f47ff1338ae5314b2583d /sapling.lua | |
parent | d98b48e2e102f59be92967ba4a6533923a29cb0e (diff) |
Added default abm overrides
Diffstat (limited to 'sapling.lua')
-rw-r--r-- | sapling.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sapling.lua b/sapling.lua index 2cf34b8..1a2192e 100644 --- a/sapling.lua +++ b/sapling.lua @@ -13,7 +13,7 @@ minetest.register_node("ethereal:bamboo_sprout", { walkable = false, groups = { snappy = 3, attached_node = 1, flammable = 2, - dig_immediate = 3, ethereal_sapling = 1 + dig_immediate = 3, sapling = 1 }, sounds = default.node_sound_defaults(), selection_box = { @@ -209,6 +209,7 @@ end -- Grow saplings minetest.register_abm({ + label = "Ethereal grow sapling", nodenames = {"group:ethereal_sapling"}, interval = 10, chance = 50, |