Bureaucrats, Moderators (CommentStreams), Interface administrators, Push subscription managers, Suppressors, Administrators
13,382
edits
Tag: Undo |
No edit summary |
||
| Line 32: | Line 32: | ||
"St. Francis of Assisi", | "St. Francis of Assisi", | ||
"St. Francis of Assisi2", | "St. Francis of Assisi2", | ||
"St. Gabriel, the Archangel", | |||
"St. Genevieve", | "St. Genevieve", | ||
"St. George", | "St. George", | ||
| Line 86: | Line 87: | ||
local randomIndex = math.random(1, max) | local randomIndex = math.random(1, max) | ||
return subpages[randomIndex] | return subpages[randomIndex] | ||
end | |||
-- Debugging function to test randomness | |||
function p.testRandomness(frame) | |||
local results = {} | |||
for i = 1, 10 do | |||
results[i] = subpages[math.random(1, #subpages)] | |||
end | |||
return table.concat(results, ", ") | |||
end | end | ||
return p | return p | ||