Fix accidental global in mcl_portals

This commit is contained in:
Wuzzy 2020-09-30 17:10:06 +02:00
parent c01c53af49
commit 3bed1c5bf8
1 changed files with 1 additions and 1 deletions

View File

@ -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