Smaller fixes

This commit is contained in:
Applevangelist
2023-09-19 12:13:39 +02:00
parent 81fd5cb605
commit 6d94a0c776
3 changed files with 5 additions and 5 deletions

View File

@@ -406,8 +406,8 @@ function UTILS._OneLineSerialize(tbl)
elseif type(val) == 'nil' then -- won't ever happen, right?
tbl_str[#tbl_str + 1] = 'nil, '
elseif type(val) == 'table' then
tbl_str[#tbl_str + 1] = UTILS._OneLineSerialize(val)
tbl_str[#tbl_str + 1] = ', ' --I think this is right, I just added it
--tbl_str[#tbl_str + 1] = UTILS._OneLineSerialize(val)
--tbl_str[#tbl_str + 1] = ', ' --I think this is right, I just added it
else
--log:warn('Unable to serialize value type $1 at index $2', mist.utils.basicSerialize(type(val)), tostring(ind))
end