fixed table.tostring

This commit is contained in:
VorTechnix 2021-06-30 11:59:19 -07:00
parent d479e167b9
commit 484b7532eb
1 changed files with 5 additions and 5 deletions

View File

@ -9,12 +9,12 @@ local function table_tostring(tbl, sep, new_line)
local ret = {}
if type(tbl) ~= "table" then return "Error: input not table!" end
for key,value in pairs(tbl) do
ret:append(key)
ret:append(sep)
ret:append(value)
ret:append(new_line)
table.insert(ret,key)
table.insert(ret,sep)
table.insert(ret,value)
table.insert(ret,new_line)
end
return ret:concat("")
return table.concat(ret,"")
end
return table_tostring