Modulo:Sandbox/Sakretsu: differenze tra le versioni
Contenuto cancellato Contenuto aggiunto
m min |
m + |
||
Riga 6:
local args = frame.args
for _, arg in ipairs(args) do
local done = false
for nazione, data in ipairs(nazioni) do
table.insert(ret, nazione)
done = true
break
end
end
if not done then
table.insert(ret, 'none')
end
end
return table.concat(args, ', ') .. table.concat(ret, ', ')
end
|