Add time_of_day to get_light crash fix

This commit is contained in:
Elias Fleckenstein 2021-04-17 21:01:09 +02:00
parent bcd058feb1
commit a7e102426a
1 changed files with 2 additions and 2 deletions

View File

@ -1029,10 +1029,10 @@ local node_ok = function(pos, fallback)
return minetest.registered_nodes[fallback]
end
local function get_light(pos)
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
local lightfunc = minetest.get_natural_light or minetest.get_node_light
return lightfunc(pos)
return lightfunc(pos, tod)
else
return 0
end