roll comment command fix to include 9999 #104

Merged
Aevann merged 1 commits from :fix-roll-comment-command into master 2023-01-29 09:34:06 +00:00
1 changed files with 1 additions and 1 deletions

View File

@ -179,7 +179,7 @@ commands = {
"fortune": FORTUNE_REPLIES,
"factcheck": FACTCHECK_REPLIES,
"8ball": EIGHTBALL_REPLIES,
"roll": range(1, 9999)
"roll": range(1, 10000)
}
command_regex = re.compile("(\s|^)#(fortune|factcheck|8ball|roll)", flags=re.A|re.I)