add another word match for countdown text triggers

This commit is contained in:
Brian S. Stephan 2021-04-25 21:05:09 -05:00
parent a03c69258f
commit d7b7bdf73d
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ class Countdown(Plugin):
new_reminder_regex = (r'remind\s+(?P<who>[^\s]+)\s+(?P<when_type>at|in|on)\s+(?P<when>.*?)\s+'
r'(and\s+every\s+(?P<recurring_period>.*?)\s+)?'
r'(until\s+(?P<recurring_until>.*?)\s+)?'
r'(to|that|about)\s+(?P<text>.*?)'
r'(to|that|about|with)\s+(?P<text>.*?)'
r'(?=\s+\("(?P<name>.*)"\)|$)')
def __init__(self, bot, connection, event):