fix table.copy
This commit is contained in:
parent
92fb19ba5e
commit
a2bf2bc1a1
@ -57,7 +57,11 @@ function table.copy(t)
|
||||
local copied = {}
|
||||
|
||||
for k, v in pairs(t) do
|
||||
copied[k] = v
|
||||
if type(v) == "table" then
|
||||
copied[k] = table.copy(v)
|
||||
else
|
||||
copied[k] = v
|
||||
end
|
||||
end
|
||||
|
||||
return copied
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user