mirror of
https://github.com/danbulant/discord.js
synced 2026-06-08 01:01:30 +00:00
Fix reaction event names (#906)
This commit is contained in:
parent
93948328b4
commit
3fd3588ef2
3 changed files with 3 additions and 3 deletions
|
|
@ -36,7 +36,7 @@ class MessageReactionAdd extends Action {
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Emitted whenever a reaction is added to a message.
|
* Emitted whenever a reaction is added to a message.
|
||||||
* @event Client#messageReactionAdd.
|
* @event Client#messageReactionAdd
|
||||||
* @param {MessageReaction} messageReaction The reaction object.
|
* @param {MessageReaction} messageReaction The reaction object.
|
||||||
* @param {User} user The user that applied the emoji or reaction emoji.
|
* @param {User} user The user that applied the emoji or reaction emoji.
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -36,7 +36,7 @@ class MessageReactionRemove extends Action {
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Emitted whenever a reaction is removed from a message.
|
* Emitted whenever a reaction is removed from a message.
|
||||||
* @event Client#messageReactionRemove.
|
* @event Client#messageReactionRemove
|
||||||
* @param {MessageReaction} messageReaction The reaction object.
|
* @param {MessageReaction} messageReaction The reaction object.
|
||||||
* @param {User} user The user that removed the emoji or reaction emoji.
|
* @param {User} user The user that removed the emoji or reaction emoji.
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@ class MessageReactionRemoveAll extends Action {
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Emitted whenever all reactions are removed from a message.
|
* Emitted whenever all reactions are removed from a message.
|
||||||
* @event Client#messageReactionRemoveAll.
|
* @event Client#messageReactionRemoveAll
|
||||||
* @param {MessageReaction} messageReaction The reaction object.
|
* @param {MessageReaction} messageReaction The reaction object.
|
||||||
*/
|
*/
|
||||||
module.exports = MessageReactionRemoveAll;
|
module.exports = MessageReactionRemoveAll;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue