diff --git a/src/structures/MessageReaction.js b/src/structures/MessageReaction.js index ac0e04dc4..134ef5f9a 100644 --- a/src/structures/MessageReaction.js +++ b/src/structures/MessageReaction.js @@ -28,12 +28,6 @@ class MessageReaction { */ this.message = message; - /** - * Whether the client has given this reaction - * @type {boolean} - */ - this.me = data.me; - /** * A manager of the users that have given this reaction * @type {ReactionUserManager} @@ -54,6 +48,12 @@ class MessageReaction { */ this.count = data.count; } + + /** + * Whether the client has given this reaction + * @type {boolean} + */ + this.me = data.me; } /**