Make water sources flow more aggressively

This commit is contained in:
Wuzzy 2017-01-06 02:27:42 +01:00
parent cb25df94f6
commit ade1d2d3dd
1 changed files with 6 additions and 12 deletions

View File

@ -107,24 +107,18 @@ minetest.register_abm({
for zp=-1,1 do
local p = {x=pos.x+xp, y=pos.y, z=pos.z+zp}
local n = minetest.get_node(p)
-- On verifie si il y a de l'eau
if (n.name=="default:water_flowing") then
drop_attached_node(pos)
minetest.dig_node(pos)
break
end
drop_attached_node(pos)
minetest.dig_node(pos)
break
end
end
-- cas rare
for yp=-1,1 do
local p = {x=pos.x, y=pos.y+yp, z=pos.z}
local n = minetest.get_node(p)
-- On verifie si il y a de l'eau
if (n.name=="default:water_flowing") then
drop_attached_node(pos)
minetest.dig_node(pos)
break
end
drop_attached_node(pos)
minetest.dig_node(pos)
break
end
end,