Add another growth stage for saplings

This commit is contained in:
Wuzzy 2017-08-04 21:05:58 +02:00
parent 55eba5c54b
commit 9ebabff5f4
1 changed files with 1 additions and 1 deletions

View File

@ -759,7 +759,7 @@ local sapling_grow_action = function(trunknode, leafnode, tree_id, soil_needed)
local stage = meta:get_int("stage")
if stage == nil then stage = 0 end
stage = stage + 1
if stage == 2 then
if stage >= 3 then
minetest.set_node(pos, {name="air"})
mcl_core.generate_tree(pos, trunknode, leafnode, tree_id)
else