mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-22 18:41:09 +01:00
Fix accidental global in mcl_portals
This commit is contained in:
parent
c01c53af49
commit
3bed1c5bf8
1 changed files with 1 additions and 1 deletions
|
@ -217,7 +217,7 @@ local function find_overworld_target_y(x, y, z)
|
|||
if not node then
|
||||
return target_y
|
||||
end
|
||||
nn = node.name
|
||||
local nn = node.name
|
||||
if nn ~= "air" and minetest.get_item_group(nn, "water") == 0 then
|
||||
target_y = target_y + 1
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue