We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52e4be7 commit 47fd57aCopy full SHA for 47fd57a
src/main.py
@@ -218,8 +218,10 @@ async def on_message(message: Message):
218
await spam_detection.check_spam(message)
219
220
if (
221
- client.user.mentioned_in(message) or "d.chat" in message.clean_content
222
- ) and message.author != client.user:
+ (client.user.mentioned_in(message) or "d.chat" in message.clean_content)
+ and message.author != client.user
223
+ and not message.mention_everyone
224
+ ):
225
attachment = message.attachments[0] if message.attachments else None
226
227
bot_response = await client.gemini_model.query(
0 commit comments