mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-22 18:41:09 +01:00
Don't wash away dig_by_water when above water
This commit is contained in:
parent
da3205837b
commit
7ac57b7a0b
1 changed files with 1 additions and 1 deletions
|
@ -113,7 +113,7 @@ minetest.register_abm({
|
|||
end
|
||||
end
|
||||
end
|
||||
for yp=-1,0 do
|
||||
for yp=0,1 do
|
||||
local p = {x=pos.x, y=pos.y+yp, z=pos.z}
|
||||
local n = minetest.get_node(p)
|
||||
local d = minetest.registered_nodes[n.name]
|
||||
|
|
Loading…
Reference in a new issue