Reduce the water distance restriction

This commit is contained in:
Wuzzy 2019-08-23 21:01:35 +02:00
parent 212636b66d
commit 39e5289b74
1 changed files with 1 additions and 1 deletions

View File

@ -302,7 +302,7 @@ minetest.register_on_generated(function(minp, maxp, seed)
p2.y = p2.y - 3
p2 = limit(p2, maxp)
if p2.y < 0 then p2.y = 0 end
if minetest.find_node_near(p2, 25, {"default:water_source"}) ~= nil or
if minetest.find_node_near(p2, 5, {"default:water_source"}) ~= nil or
minetest.find_node_near(p2, 22, {"default:dirt_with_grass"}) ~= nil or
minetest.find_node_near(p2, 52, {"default:sandstonebrick"}) ~= nil or
minetest.find_node_near(p2, 52, {"default:desert_sandstone_brick"}) ~= nil then