Fixed a minor lua bug

This commit is contained in:
Linus Probert 2018-02-10 08:00:20 +01:00
parent 08207f5e35
commit 1bb8514a8d
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ local demon = {
}
local function concat(table1, table2)
for i=0,#table2 do
for i=1,#table2 do
table1[#table1+1] = table2[i]
end
return table1