Increase soil wetting range from 3 to 4

Thanks, Jaen!
This commit is contained in:
Wuzzy 2017-02-18 04:08:27 +01:00
parent bb734ea820
commit 2e8b78ee7f
1 changed files with 1 additions and 1 deletions

View File

@ -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