Merge branch 'master' into damage

This commit is contained in:
Elias Fleckenstein 2021-04-25 20:04:15 +02:00
commit 57662b319c
1 changed files with 1 additions and 1 deletions

View File

@ -1031,7 +1031,7 @@ local node_ok = function(pos, fallback)
end
local function get_light(pos, tod)
if math.abs(pos.x) < 31000 and math.abs(pos.y) < 31000 and math.abs(pos.z) < 31000 then
if minetest.get_node_or_nil(pos) then
local lightfunc = minetest.get_natural_light or minetest.get_node_light
return lightfunc(pos, tod)
else