Skip to content

Commit

Permalink
Update Normal.py attempting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
JUSTadICE-CHaN authored Sep 27, 2024
1 parent dfac988 commit a93c2ca
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Normal.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit a93c2ca

Please sign in to comment.