Module:Damage: Difference between revisions

no edit summary
No edit summary
No edit summary
Line 5: Line 5:
end
end


function forargs(prefix)
function forargs(frame, prefix)
     local i = 1
     local i = 1
     local tab = {}
     local tab = {}
Line 23: Line 23:
function p.main(frame)
function p.main(frame)
     local args = getArgs(frame)
     local args = getArgs(frame)
     return forargs(args, 'hits')
     return forargs(frame, 'hits')
end
end


return p
return p