From 6b322f47a0f86115dab71c06c7879fe82ea04ec4 Mon Sep 17 00:00:00 2001 From: monbrey Date: Thu, 26 Nov 2020 09:55:29 +1100 Subject: [PATCH] fix(MessageReaction): set MessageReaction#me in patch method (#5047) --- 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 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; } /**