forked from Mineclonia/Mineclonia
Add another growth stage for saplings
This commit is contained in:
parent
55eba5c54b
commit
9ebabff5f4
|
@ -759,7 +759,7 @@ local sapling_grow_action = function(trunknode, leafnode, tree_id, soil_needed)
|
||||||
local stage = meta:get_int("stage")
|
local stage = meta:get_int("stage")
|
||||||
if stage == nil then stage = 0 end
|
if stage == nil then stage = 0 end
|
||||||
stage = stage + 1
|
stage = stage + 1
|
||||||
if stage == 2 then
|
if stage >= 3 then
|
||||||
minetest.set_node(pos, {name="air"})
|
minetest.set_node(pos, {name="air"})
|
||||||
mcl_core.generate_tree(pos, trunknode, leafnode, tree_id)
|
mcl_core.generate_tree(pos, trunknode, leafnode, tree_id)
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue