2020-04-16 19:13:14 +02:00
|
|
|
if not regional_weather.settings.fire then return end
|
|
|
|
if not minetest.get_modpath("fire") then return end
|
|
|
|
|
|
|
|
climate_api.register_abm({
|
|
|
|
label = "extinguish fire at high humidity",
|
|
|
|
nodenames = { "fire:basic_flame" },
|
2020-04-25 15:50:45 +02:00
|
|
|
neighbors = { "air" },
|
2020-04-16 19:13:14 +02:00
|
|
|
interval = 10,
|
|
|
|
chance = 2,
|
2020-04-24 01:36:58 +02:00
|
|
|
catch_up = false,
|
2020-04-16 19:13:14 +02:00
|
|
|
|
|
|
|
conditions = {
|
|
|
|
min_height = regional_weather.settings.min_height,
|
|
|
|
max_height = regional_weather.settings.max_height,
|
|
|
|
min_humidity = 55,
|
|
|
|
max_heat = 85,
|
2020-04-18 17:26:01 +02:00
|
|
|
daylight = 15
|
2020-04-16 19:13:14 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
action = function (pos, node, env)
|
|
|
|
minetest.set_node(pos, { name = "air" })
|
|
|
|
end
|
|
|
|
})
|