diff --git a/src/structures/MessageReaction.js b/src/structures/MessageReaction.js index 134ef5f9a..ac0e04dc4 100644 --- a/src/structures/MessageReaction.js +++ b/src/structures/MessageReaction.js @@ -28,6 +28,12 @@ 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} @@ -48,12 +54,6 @@ class MessageReaction { */ this.count = data.count; } - - /** - * Whether the client has given this reaction - * @type {boolean} - */ - this.me = data.me; } /**