Merge remote-tracking branch 'origin/master' into branch

This commit is contained in:
Applevangelist
2025-03-09 14:38:39 +01:00
4 changed files with 114 additions and 12 deletions

View File

@@ -514,7 +514,7 @@ function UTILS.PrintTableToLog(table, indent, noprint)
env.info(string.rep(" ", indent) .. tostring(k) .. " = {")
end
text = text ..string.rep(" ", indent) .. tostring(k) .. " = {\n"
text = text .. tostring(UTILS.PrintTableToLog(v, indent + 1)).."\n"
text = text .. tostring(UTILS.PrintTableToLog(v, indent + 1), noprint).."\n"
if not noprint then
env.info(string.rep(" ", indent) .. "},")
end