Content deleted Content added
add padding back in |
avoid use of 'i' in these two cases as ambiguous |
||
Line 7:
return true
end
for
if args[year .. string.char(
return true
end
Line 20:
end
for
if args['range' ..
local _, _, beginyear, endyear = string.find( args['range' ..
local year = tonumber(year) or 9999 -- For year == 'TBA'
Line 29:
if year >= beginyear and year <= endyear then
local _, _, color1, color2 = string.find( args['range' ..
color2 = (color2 == '') and color1 or color2
return isYearReleased(args, year) and color1 or color2
|