mirror of
https://github.com/minetest/minetest_game.git
synced 2024-11-05 23:33:51 +01:00
Default/trees: Add requirement of light level 13 for sapling growth
This commit is contained in:
parent
c15bd9d529
commit
ef8b7e230d
@ -16,6 +16,10 @@ local function can_grow(pos)
|
|||||||
if is_soil == 0 then
|
if is_soil == 0 then
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
|
local ll = minetest.get_node_light(pos)
|
||||||
|
if not ll or ll < 13 then -- Minimum light level for growth
|
||||||
|
return false -- matches grass, wheat and cotton
|
||||||
|
end
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user