diff --git a/src/structures/Message.js b/src/structures/Message.js index 434ca6c54..39a40b6b4 100644 --- a/src/structures/Message.js +++ b/src/structures/Message.js @@ -296,7 +296,9 @@ class Message { * @readonly */ get edits() { - return this._edits.slice().unshift(this); + const copy = this._edits.slice(); + copy.unshift(this); + return copy; } /**