Fix table dumpage
This commit is contained in:
@@ -19,7 +19,7 @@ if not data.dumpTable then
|
||||
for k, v in pairs(table) do
|
||||
if (type(v) == "table") then
|
||||
print(string.rep(" ", depth) .. k .. ":")
|
||||
DumpTable(v, depth + 1)
|
||||
data.dumpTable(v, depth + 1)
|
||||
else
|
||||
print(string.rep(" ", depth) .. k .. ": ", v)
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user