Content deleted Content added
changing headers |
No edit summary |
||
Line 162:
local show_rating = yesno(Args['show_rating'] or 'no')
local show_played = not yesno(Args['hide_played'] or 'no')
local score_over_played = yesno(Args['score_over_played'] or 'no')
local hth_first = yesno(Args['hth_before_w'] or 'yes')
local show_hth = yesno(Args['show_hth'] or 'yes')
Line 192 ⟶ 193:
end
if
points = points .. '/' .. matches
elseif disp_fractions then
if math.floor(points) ~= points then
if math.floor(points) > 0 then
|