From dd0c13d64aa43e702a890a14dfd8ac92cff9890d Mon Sep 17 00:00:00 2001 From: Cooldude2606 Date: Fri, 15 Sep 2017 18:56:19 +0100 Subject: [PATCH] Removed added line in table.to_string incase that was the problem --- locale/ExpGaming-Core/ExpGaming - Lib.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/locale/ExpGaming-Core/ExpGaming - Lib.lua b/locale/ExpGaming-Core/ExpGaming - Lib.lua index 3fe38aff..ef689962 100644 --- a/locale/ExpGaming-Core/ExpGaming - Lib.lua +++ b/locale/ExpGaming-Core/ExpGaming - Lib.lua @@ -57,7 +57,6 @@ function table.key_to_str ( k ) end function table.to_string( tbl ) - if not type(tbl) == 'table' then return {tostring(tbl)} end local result, done = {}, {} for k, v in ipairs( tbl ) do table.insert( result, table.val_to_str( v ) )