wip wöp (WIP)

This commit is contained in:
Nils Dagsson Moskopp 2021-09-04 02:51:11 +02:00
parent cc76a79a7d
commit 0ba6b7a2d2
Signed by untrusted user who does not match committer: erlehmann
GPG Key ID: A3BC671C35191080
1 changed files with 3 additions and 4 deletions

View File

@ -127,7 +127,6 @@ function flow_water_downwards(pos, node, limit)
return
end
if node.name ~= "air" then
minetest.debug("node not air")
return
end
minetest.debug(dump(node.name), dump(limit))
@ -171,9 +170,9 @@ minetest.register_abm({
local below_pos = {x=pos.x, y=pos.y-1, z=pos.z}
local below_node = minetest.get_node(below_pos)
flow_water_downwards(
below_pos,
below_node,
20
below_pos,
below_node,
20
)
end,
})