Module:Tour history: Difference between revisions

No edit summary
No edit summary
Line 39: Line 39:


function p._is_tour_page(title)
function p._is_tour_page(title)
-- exclusion list
local exclusions = {
['guitar hero world tour'] = true,
}
if exclusions[title] == true then
return false
end
return string.sub(title, -12) == 'tour history'
return string.sub(title, -12) == 'tour history'
or string.sub(title, -9)  == 'residency'
or string.sub(title, -9)  == 'residency'