add #roll

remotes/1693045480750635534/spooky-22
Aevann1 2022-07-13 15:06:59 +02:00
parent 706b8491fe
commit df096e7cc4
1 changed files with 4 additions and 3 deletions

View File

@ -137,10 +137,11 @@ def torture_ap(body, username):
commands = {
"fortune": FORTUNE_REPLIES,
"factcheck": FACTCHECK_REPLIES,
"8ball": EIGHTBALL_REPLIES
"8ball": EIGHTBALL_REPLIES,
"roll": range(1, 9999)
}
command_regex = re.compile("(\s|\n|^)#(fortune|factcheck|8ball)", flags=re.A|re.I)
command_regex = re.compile("(\s|\n|^)#(fortune|factcheck|8ball|roll)", flags=re.A|re.I)
def command_regex_matcher(match, upper=False):
return match.group(1) + choice(commands[match.group(2).lower()])
return match.group(1) + str(choice(commands[match.group(2).lower()]))