Skip to content

Commit

Permalink
Update Normal.py fixed custom message
Browse files Browse the repository at this point in the history
  • Loading branch information
JUSTadICE-CHaN authored Sep 30, 2024
1 parent 227dc1f commit 09dace3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Normal.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,10 @@ async def process_reaction(self, reaction, message, main_channel_id):
await asyncio.sleep(2)
async for next_message in reaction.message.channel.history(limit=20, after=message):
if next_message.author.id == bot_id and self.user.name in next_message.content and waifu.name in next_message.content:
await reaction.message.channel.send(Config.Message)
if Config.Message is not None:
await reaction.message.channel.send(Config.Message)
else:
pass
print(f"{waifu.name} Claimed")
self.rolling[main_channel_id].set_claim_availability(False)
if not Config.AlwaysRoll:
Expand Down

0 comments on commit 09dace3

Please sign in to comment.