444
edits
Inconvenient (talk | contribs) No edit summary |
Inconvenient (talk | contribs) No edit summary |
||
Line 26: | Line 26: | ||
function p.getItemsTable(frame) | function p.getItemsTable(frame) | ||
local | local itemTable = {} | ||
for i = 1, itemCount do | for i = 1, itemCount do | ||
table.insert( | table.insert(itemTable, p._getItemsTable(i)) | ||
end | end | ||
return table.concat( | return table.concat(itemTable) | ||
end | end | ||
edits