mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-22 18:41:09 +01:00
Lower chances to wetten soil at rain
This commit is contained in:
parent
681a9aa8c6
commit
194ec03b68
1 changed files with 2 additions and 2 deletions
|
@ -207,8 +207,8 @@ if weather.allow_abm then
|
|||
-- Wetten the soil
|
||||
minetest.register_abm({
|
||||
nodenames = {"mcl_farming:soil"},
|
||||
interval = 27.0,
|
||||
chance = 1,
|
||||
interval = 22.0,
|
||||
chance = 3,
|
||||
action = function(pos, node, active_object_count, active_object_count_wider)
|
||||
if rain.raining and weather.is_outdoor(pos) then
|
||||
if node.name == "mcl_farming:soil" then
|
||||
|
|
Loading…
Reference in a new issue