I'm trying to make the bot only send the embed message when mentioned with @, but it sends again when it's replied.
const mentionEmbed = new Discord.MessageEmbed()
.setColor("#FF5733")
.setTitle("Salve, Roberval na área ")
.setDescription("Sou um bot dedicado ao envio de desenhos ASCII e copypastas utilizados em streams de qualidade duvidosa na plataforma roxa. \n \nPara me usar, basta utilizar o prefixo r! + o comando que você quiser!")
.setFooter("All rights reserved @ Roberval - 2021", "https://i.imgur.com/BwCCYT9.jpg");
client.on("message", (message) => {
if (message.author.bot) return false;
if (message.content.includes("@here") || message.content.includes("@everyone")) return false;
if (message.mentions.has(client.user.id)) {
message.channel.send(mentionEmbed);
}
});