@everyone ping Bug ?

interaction.channel.send({
      content: "@everyone " /* + member.toString() */,
      allowedMentions: {
        roles: [guild.roles.everyone.id],
      },
    });

doesnt ping but this does:

interaction.channel.send({
      content: "@everyone " /* + member.toString() */,
    });
Was this page helpful?