increment range so it is 1 to 9999 like in the fomatting docs

pull/104/head
mummified-corroding-granny 2023-01-28 23:57:57 +00:00
parent 81d6982acb
commit e150031089
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)