📌  相关文章
📜  discord.js 从消息中删除嵌入 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:04:20.790000             🧑  作者: Mango

代码示例1
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.
    }
})