Module:Stats
From SWGoH Wiki
Jump to navigationJump to searchDocumentation for this module may be created at Module:Stats/doc
--[[
This Module is used to adjust stats used throughout the wiki.
- Finisher
--]]
local p = {}
--Global variables go here--
--Functions--
--[[-------
FINISHER
--]]-------
function p.finisher(stats)
stats = stats.args[1]
stats = string.gsub( stats, ",", "<br />")
strEnd = string.len(stats)
return string.sub( stats, 1, strEnd )
end --END Function units
return p