diff --git a/src/structures/Message.js b/src/structures/Message.js index a409e411a..9b86279ea 100644 --- a/src/structures/Message.js +++ b/src/structures/Message.js @@ -377,10 +377,10 @@ class Message extends Base { } if (!options.content) options.content = content; - const { data, files } = await createMessage(this, options); + const { data } = await createMessage(this, options); return this.client.api.channels[this.channel.id].messages[this.id] - .patch({ data, files }) + .patch({ data }) .then(d => { const clone = this._clone(); clone._patch(d);