From b2a672047745b0a47729ef775482e06a20b38db3 Mon Sep 17 00:00:00 2001 From: monbrey Date: Mon, 14 Dec 2020 23:58:21 +1100 Subject: [PATCH] revert: 5047 (#5050) --- src/structures/MessageReaction.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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; } /**