1
0
mirror of https://github.com/t-affeldt/regional_weather.git synced 2025-07-18 08:20:28 +02:00

Delete puddles and snow faster, don't mark puddles as water by default

This commit is contained in:
Till Affeldt
2020-10-08 15:42:43 +02:00
parent 1079f9a762
commit 5e2cba0ae8
4 changed files with 12 additions and 15 deletions

View File

@ -144,13 +144,11 @@ climate_api.register_abm({
climate_api.register_abm({
label = "remove rain puddles",
nodenames = { "group:weather_puddle" },
interval = 10,
chance = 3,
interval = 25,
chance = 30,
catch_up = true,
action = function (pos, node, env)
if env.humidity < 55 then
minetest.remove_node(pos)
end
minetest.remove_node(pos)
end
})