mirror of
https://git.minetest.land/MineClone2/MineClone2.git
synced 2025-03-14 10:02:32 +01:00
Fix accidental global in mcl_portals
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user