Fix table dumpage

This commit is contained in:
2024-12-12 15:10:04 +01:00
parent f3542d6e94
commit 801559a25d

View File

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