Content deleted Content added
No edit summary |
No edit summary |
||
Line 401:
{{wins, draws, losses, rw, gfor, gaig}} or
{{cwins, cdraws, closses, crw, cgfor, cgaig, cwin_perc}, {wins, draws, losses, rw, gfor, gaig, win_perc}}
local first_pass = true
for k,v in ipairs(stats) do
table.insert(t,'| style="'..sps..win_fw..bg_col..'" |'..(v[1])..win_string..'\n') -- Won
Line 423 ⟶ 424:
end
if rank_perc then
if first_pass then
table.insert(t,'| style="font-weight: bold;'..bg_col..'" | '..(v[7])..hth_string..'\n')
first_pass = false
else
table.insert(t,'| style="'..bg_col..'" | '..(v[7])..'\n')
end
end
end
|