mirror of
https://github.com/t-affeldt/lighting_monoids.git
synced 2025-04-04 12:00:40 +02:00
13 lines
455 B
Lua
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 |