diff options
| author | Joshua Liu <joshua.liu@sourceobby.com> | 2025-11-30 11:38:39 -0500 |
|---|---|---|
| committer | Joshua Liu <joshua.liu@sourceobby.com> | 2025-11-30 11:38:39 -0500 |
| commit | 6c57ad7b4c13a21b30b61c29aeff0004c2ae8589 (patch) | |
| tree | 69d0c425762f6c17d31769e22ead581d112f42fb | |
| parent | df81cfacbac94802d24b9208bec0174cc72272ca (diff) | |
feat: reworked the india scammer feature to accept more promptsmaster
| -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 |
