Content deleted Content added
No edit summary |
|||
Line 50:
-- Whether to use tiebreak
local
local do_tiebr = false
if yesno(use_tiebr_val) then do_tiebr = true end
-- Initialize
Line 68 ⟶ 70:
tt = p_sub.colhead(tt,32,'<abbr title="Lost">L</abbr>') -- Loss col
tt = p_sub.colhead(tt,32,OTloss_head_text)
if
tt = p_sub.colhead(tt,32,tiebr_head_text)
end
Line 137 ⟶ 139:
-- Whether to use tiebreak
local
local do_tiebr = false
if yesno(use_tiebr_val) then do_tiebr = true end
-- Some local vars
Line 152 ⟶ 156:
table.insert(t,'| style="'..ii_fw..bg_col..'" |'..losses..'\n') -- Lost
table.insert(t,'| style="'..ii_fw..bg_col..'" |'..OTlosses..'\n') -- Lost in OT
if
table.insert(t,'| style="'..ii_fw..bg_col..'" |'..tiebr_val..'\n') -- Tiebreaker value
end
|