Code format
Some checks failed
Release Workflow / release (push) Failing after 23s

This commit is contained in:
2025-05-04 15:09:34 +02:00
parent 304fbcbaae
commit 1da1e7bf9f
30 changed files with 4620 additions and 4241 deletions

View File

@@ -10,15 +10,13 @@ if not shared.dumpTable then
print(tostring(table))
return
end
if depth == nil then
depth = 0
end
if (depth > 200) then
if depth == nil then depth = 0 end
if depth > 200 then
print("Error: Depth > 200 in dumpTable()")
return
end
for k, v in pairs(table) do
if (type(v) == "table") then
if type(v) == "table" then
print(string.rep(" ", depth) .. k .. ":")
shared.dumpTable(v, depth + 1)
else