No desync with server interface now

This commit is contained in:
Cooldude2606
2017-09-20 18:58:56 +01:00
parent f5a62350fb
commit d05cc6cf93

View File

@@ -44,6 +44,8 @@ function table.val_to_str ( v )
return '"' .. string.gsub(v,'"', '\\"' ) .. '"'
else
return "table" == type( v ) and table.tostring( v ) or
"function" == type( v ) and '"cant_display_function"' or
"userdata" == type( v ) and '"cant_display_userdata"' or
tostring( v )
end
end