From 3cc6f5337462f0607ed3fa08ae124113ac82f5dc Mon Sep 17 00:00:00 2001 From: Applevangelist Date: Tue, 19 Sep 2023 12:10:04 +0200 Subject: [PATCH] Serialize --- Moose Development/Moose/Utilities/Utils.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Moose Development/Moose/Utilities/Utils.lua b/Moose Development/Moose/Utilities/Utils.lua index 7e21a576a..367e85d66 100644 --- a/Moose Development/Moose/Utilities/Utils.lua +++ b/Moose Development/Moose/Utilities/Utils.lua @@ -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.TableShow(tbl,loc,indent,tableshow_tbls) + --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