diff --git a/lib/structures/Interaction.js b/lib/structures/Interaction.js index 68bd8525d..17d297ad8 100644 --- a/lib/structures/Interaction.js +++ b/lib/structures/Interaction.js @@ -202,9 +202,6 @@ class Interaction extends Base { } else if(content.content === undefined && !content.embeds && content.flags === undefined && content.flags === undefined) { return Promise.reject(new Error("No content, embeds, components, or flags")); } - if(content.content !== undefined || content.embed || content.allowedMentions) { - content.allowed_mentions = this._client._formatAllowedMentions(content.allowedMentions); - } } return this._client.editWebhookMessage.call(this._client, this.applicationId, this.token, messageId, content); }