From a93c2cae46feb36ee082e0997bdcb86bd5cf61b3 Mon Sep 17 00:00:00 2001 From: JUSTadICE <88615618+JUSTadICE-CHaN@users.noreply.github.com> Date: Fri, 27 Sep 2024 18:47:07 +0100 Subject: [PATCH] Update Normal.py attempting fix --- Normal.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Normal.py b/Normal.py index bb34c21..2700ac4 100644 --- a/Normal.py +++ b/Normal.py @@ -229,7 +229,8 @@ async def process_waifu_claim(self, waifu, message, main_channel_id): async def attempt_kakera_snipe(self, message, waifu): if message.components: for child in message.components[0].children: - if child.emoji.name in Config.Kakera: + if child.emoji.name.lower() in [k.lower() for k in Config.Kakera]: + print(f"{child.emoji.name} will not be claimed as its been disabled") pass else: print(f"\nAttempting to snipe kakera for {waifu} ({child.emoji.name})\n")