Pinging Roles on interaction reply messages
i have a basic command that pings the chat revive role when run, but i cant seem to get the bot to ping the members with the role. is there something i am missing
here is my code:
5 Replies
- What's your exact discord.js
npm list discord.js
and node node -v
version?
- Not a discord.js issue? Check out #other-js-ts.
- Consider reading #how-to-get-help to improve your question!
- Explain what exactly your issue is.
- Post the full error stack trace, not just the top part!
- Show your code!
- Issue solved? Press the button!
- ✅
Marked as resolved by OPversion is 14.18
You can control which entities receive notifications via the
allowedMentions
option. You can:
- Set a default on the client
- Set for a specific message
- Use the repliedUser
key to disable in-line reply mentions
This controls if a user/role mention actually pings said users/roles
i see, thanks for the reply
it works thanks