So I want to send a message to a channel and tag a role by the role's ID, all of this is okay and it doesn't throw any errors. The message mentions the role but it doesn't get the yellow background like when you've been mentioned or the red (1) next to the channel like you've been mentioned. It's able to ping individual users just fine, just pinging roles it's unable to do. Does anyone have any ideas?
My client initialization has the allowedMentions:
const client = new Client({
allowedMentions: { parse: ['users', 'roles'], repliedUser: true },
intents: [...]
});
The way I'm trying to tag the role just to make sure it works is:
- Slash command
/test
case 'test': {
await interaction.reply(`<@&1013966888419741778>`);
} break;
The message that gets sent from that command looks like this:

But when I try and tag a user ( await interaction.reply('<@479069058864775180>'); ) it works just fine: 