revert: 5047 (#5050)

This commit is contained in:
monbrey
2020-12-14 23:58:21 +11:00
committed by GitHub
parent 0a591a9697
commit b2a6720477

View File

@@ -28,6 +28,12 @@ class MessageReaction {
*/ */
this.message = message; 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 * A manager of the users that have given this reaction
* @type {ReactionUserManager} * @type {ReactionUserManager}
@@ -48,12 +54,6 @@ class MessageReaction {
*/ */
this.count = data.count; this.count = data.count;
} }
/**
* Whether the client has given this reaction
* @type {boolean}
*/
this.me = data.me;
} }
/** /**