diff options
| -rw-r--r-- | bigresult.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bigresult.py b/bigresult.py index 93e09c5..084c1e0 100644 --- a/bigresult.py +++ b/bigresult.py @@ -14,6 +14,7 @@ ANGGY = re.compile(r'.*((are)|(is))(( so)|( really))? mad.*') ANGGY1 = re.compile(r'.*you are(( so)|( really))? mad.*') ANGGY2 = re.compile(r'.*((they are)|((he)|(she) is))(( so)|( really))? mad.*') INDIA = re.compile(r'gift ?card') +REDEEMER = re.compile(r'((i|(im)) (((gonna)|(going to)|(will)) redeem)|(have redeemed))') BIG_BRAIN_MESSAGE = re.compile(r'(think)|(have an idea)|(theory)|(smart)|([1-9]*[0-9]{2} iq)') @@ -143,7 +144,7 @@ class BigResultPlus(commands.Bot): if super().voice_clients is None: return - elif ("im gonna redeem" in fuckyou and self.india_scammer_mode == True): + elif (REDEEMER.search(fuckyou) and self.india_scammer_mode == True): await message.reply("NOOOOOOOOOOOOO NO NO NOOOOOOOOOO!") self.india_scammer_mode = False return |
