2023-03-24 22:22:44 +01:00

13 lines
455 B
Lua

-- Hook into MTG weather mod for compatibility (requires PR #3020)
if weather ~= nil and weather.on_update ~= nil then
weather.on_update = function(player, overrides)
if overrides == nil then
return
end
if overrides.shadows then
lighting_monoid:add_change(player, { shadows = overrides.shadows }, "weather:cloud_shadows")
end
overrides.lighting = nil
return overrides
end
end