From 6c57ad7b4c13a21b30b61c29aeff0004c2ae8589 Mon Sep 17 00:00:00 2001 From: Joshua Liu Date: Sun, 30 Nov 2025 11:38:39 -0500 Subject: feat: reworked the india scammer feature to accept more prompts --- bigresult.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- cgit v1.2.3