Discord.js Supprimer l'intégration du message

client.on("message", message => {
    if (message.author.bot) return false;

    if (message.author.id !== "YourID") { // Example Condition
        message.suppressEmbeds(true) // Removes all embeds from the message.
    }
})
Gifted Gull