2.2 overriden native Lua function table.concat: Avorion\data\scripts\lib\utility.lua
function table.concat(tbl, add)
for _, value in pairs(add) do
table.insert(tbl, value)
end
end
I ask you to change the function name because native table.concat ( http://lua-users.org/wiki/TableLibraryTutorial ) works in a completely different way. Your change breaks all mods that use this function and also confuses future modders who will expect native functions to behave in a same way.