Removed @everyone and @here check line,

It doesnt work, need to fix.
This commit is contained in:
2023-11-24 20:39:43 -05:00
parent 75cd336dce
commit 3254b4f744

View File

@@ -148,10 +148,6 @@ async def on_message(message):
if message.author == bot.user:
return
# Check for @everyone or @here mentions and ignore such messages
if "@everyone" in message.content or "@here" in message.content:
return
identifier = message.channel.id
thread_ids[identifier]["last_used"] = datetime.now()