Content deleted Content added
Resolved issues, back to style-allowing format |
Limited inputs truncate table |
||
Line 67:
-- Show all stats in table or just matches played and points
local
local full_table -- True if par doesn't exist, false otherwise -- First convert to lower case if it is a string
pld_pts_val = string.lower(pld_pts_val)
if pld_pts_val=='y' or pld_pts_val=='yes' or pld_pts_val=='t' or pld_pts_val=='true' or pld_pts_val=='1' then
full_table = false
else
full_table = true
end
-- Custom position column label or note
local pos_label = Args['postitle'] or ''
|