From 7ac833bb19127921fa9a8c6805b954a3581815a9 Mon Sep 17 00:00:00 2001 From: Till Affeldt Date: Fri, 27 Sep 2024 00:52:46 +0200 Subject: [PATCH] Add patch for climate_api to disable MTG weather --- compatibility/weather.lua | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/compatibility/weather.lua b/compatibility/weather.lua index e1639f6..d177b82 100644 --- a/compatibility/weather.lua +++ b/compatibility/weather.lua @@ -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)