Add patch for climate_api to disable MTG weather

This commit is contained in:
Till Affeldt 2024-09-27 00:52:46 +02:00
parent 8108a5d585
commit 7ac833bb19

View File

@ -7,6 +7,11 @@ if weather == nil or weather.get == nil then
return
end
-- leave it to climate_api to disable
if minetest.get_modpath("climate_api") then
return
end
-- prevent mod from triggering lighting updates itself
local old_get = weather.get
weather.get = function(player)