📅  最后修改于: 2022-03-11 15:04:20.790000             🧑  作者: Mango
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.
}
})