Fixed a minor lua bug
This commit is contained in:
parent
08207f5e35
commit
1bb8514a8d
|
@ -136,7 +136,7 @@ local demon = {
|
||||||
}
|
}
|
||||||
|
|
||||||
local function concat(table1, table2)
|
local function concat(table1, table2)
|
||||||
for i=0,#table2 do
|
for i=1,#table2 do
|
||||||
table1[#table1+1] = table2[i]
|
table1[#table1+1] = table2[i]
|
||||||
end
|
end
|
||||||
return table1
|
return table1
|
||||||
|
|
Loading…
Reference in New Issue