mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-11 09:03:29 +01:00
12 lines
308 B
JavaScript
12 lines
308 B
JavaScript
const AbstractHandler = require('./AbstractHandler');
|
|
|
|
class MessageReactionAddHandler extends AbstractHandler {
|
|
handle(packet) {
|
|
const client = this.packetManager.client;
|
|
const data = packet.d;
|
|
client.actions.MessageReactionAdd.handle(data);
|
|
}
|
|
}
|
|
|
|
module.exports = MessageReactionAddHandler;
|