mirror of
https://git.minetest.land/Mineclonia/Mineclonia.git
synced 2024-11-24 08:35:09 +00:00
Increase soil wetting range from 3 to 4
Thanks, Jaen!
This commit is contained in:
parent
bb734ea820
commit
2e8b78ee7f
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ minetest.register_abm({
|
|||
interval = 15,
|
||||
chance = 3,
|
||||
action = function(pos, node)
|
||||
if minetest.find_node_near(pos, 3, {"mcl_core:water_source", "mcl_core:water_flowing"}) then
|
||||
if minetest.find_node_near(pos, 4, {"mcl_core:water_source", "mcl_core:water_flowing"}) then
|
||||
node.name = "mcl_farming:soil_wet"
|
||||
minetest.set_node(pos, node)
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue