We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d44cb54 commit 7c5accfCopy full SHA for 7c5accf
builtin/common/misc_helpers.lua
@@ -545,12 +545,11 @@ function table.copy(t, seen)
545
seen = seen or {}
546
seen[t] = n
547
for k, v in pairs(t) do
548
- n[type(k) ~= "table" and k or seen[k] or table.copy(k, seen)] =
549
- type(v) ~= "table" and v or seen[v] or table.copy(v, seen)
+ n[(type(k) == "table" and (seen[k] or table.copy(k, seen))) or k] =
+ (type(v) == "table" and (seen[v] or table.copy(v, seen))) or v
550
end
551
return n
552
553
-
554
--------------------------------------------------------------------------------
555
-- mainmenu only functions
556
0 commit comments