DiscordJS-Template/events/reactionRemove.js

9 lines
286 B
JavaScript

import { Events } from 'discord.js';
export const name = Events.MessageReactionRemove;
export async function execute(reaction, user) {
const uname = user.username;
const rname = reaction._emoji.name;
console.debug(`[DEBUG] User '${uname}' removed reaction of emoji '${rname}'.`);
}