Module:Damage

From Elwiki
Revision as of 01:07, 20 March 2022 by Ritsu (talk | contribs) (Protected "Module:Test" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)))

Documentation for this module may be created at Module:Damage/doc

local p = {}
p.loop = function(frame)
    local t = {}
    local k = {}
    for name, value in frame:argumentPairs() do
        k[name] = value
    end
    k = table.concat(k, ", ")
    return k
end
return p