Fix another bug in village hillgen

This commit is contained in:
Wuzzy 2019-09-26 17:03:44 +02:00
parent cabbc8b7cb
commit be4a9f7081
1 changed files with 3 additions and 7 deletions

View File

@ -241,7 +241,7 @@ end
function village.get_column_nodes(pos, scanheight, dirtnodes)
local nn = minetest.get_node({x=pos.x,y=pos.y+1,z=pos.z}).name
local nd = minetest.registered_nodes[nn]
if (not nd) or (not nd.is_ground_content and minetest.registered_nodes[nn].liquidtype ~= "none") then
if (not nd) or (not nd.is_ground_content and minetest.registered_nodes[nn].liquidtype == "none" and nn ~= "ignore") then
return
end
@ -250,14 +250,10 @@ function village.get_column_nodes(pos, scanheight, dirtnodes)
nn = minetest.get_node(p).name
nd = minetest.registered_nodes[nn]
if (not nd) or (not nd.is_ground_content and minetest.registered_nodes[nn].liquidtype ~= "none") then
if (not nd) or (not nd.is_ground_content and minetest.registered_nodes[nn].liquidtype == "none" and nn ~= "ignore") then
break
else
if (nd.is_ground_content) or nn == "ignore" then
table.insert(dirtnodes, p)
else
break
end
table.insert(dirtnodes, p)
end
end
end