roll comment command fix to include 9999 (#104)

roll comment command fix to include 9999. Changed to meet the documentation in the formatting page instead of doing the reverse

Reviewed-on: #104
Co-authored-by: mummified-corroding-granny <mummified-corroding-granny@noreply.fsdfsd.net>
Co-committed-by: mummified-corroding-granny <mummified-corroding-granny@noreply.fsdfsd.net>
pull/105/head
mummified-corroding-granny 2023-01-29 09:34:06 +00:00 committed by Aevann
parent 57e72a7641
commit 950f4dde28
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)