Prevent nil as return value of get_node_light()
This commit is contained in:
parent
902f115cd0
commit
883ee3ca7d
6
init.lua
6
init.lua
@ -11,6 +11,9 @@ function farming:add_plant(full_grown, names, interval, chance)
|
||||
return
|
||||
end
|
||||
pos.y = pos.y+1
|
||||
if not minetest.env:get_node_light(pos) then
|
||||
return
|
||||
end
|
||||
if minetest.env:get_node_light(pos) < 8 then
|
||||
return
|
||||
end
|
||||
@ -44,6 +47,9 @@ function farming:generate_tree(pos, trunk, leaves, underground, replacements)
|
||||
end
|
||||
end
|
||||
pos.y = pos.y+1
|
||||
if not minetest.env:get_node_light(pos) then
|
||||
return
|
||||
end
|
||||
if ret or minetest.env:get_node_light(pos) < 8 then
|
||||
return
|
||||
end
|
||||
|
Loading…
x
Reference in New Issue
Block a user