#Is it possible to not mention with a message.reply?

1 messages · Page 1 of 1 (latest)

fiery vault
#

Currently im doing await event.message.reply(message, silent=True) but the message still seems like a mention (yellow), im probably just missing something but i didn't see it easily in the documentation.

queen laurelBOT
#

Hey! Once your issue is solved, press the button below to close this thread!

frail eagle
#

silent is a specific type of message that doesn't notify, which is not the same thing as ping
you need to set kwarg allowed_mentions=AllowedMentions.none()

fiery vault
#

yep that did it, thanks!