fix arrays 2

This commit is contained in:
Sara Aimée Smiseth 2020-10-02 17:22:30 +02:00
parent 6125c8a270
commit d2065b426b

View file

@ -1,4 +1,4 @@
function splitString (input, sep) local splitString = function(input, sep)
local t={} local t={}
for str in string.gmatch(input, "([^"..sep.."]+)") do for str in string.gmatch(input, "([^"..sep.."]+)") do
table.insert(t, str) table.insert(t, str)