From 713135a0219a357ad273a0a0cc82bdfee7795e15 Mon Sep 17 00:00:00 2001 From: Baipyrus Date: Fri, 26 Jan 2024 20:23:45 +0100 Subject: [PATCH] initialize reaction events --- events/reactionAdd.js | 6 ++++++ events/reactionRemove.js | 6 ++++++ 2 files changed, 12 insertions(+) create mode 100644 events/reactionAdd.js create mode 100644 events/reactionRemove.js diff --git a/events/reactionAdd.js b/events/reactionAdd.js new file mode 100644 index 0000000..c45c021 --- /dev/null +++ b/events/reactionAdd.js @@ -0,0 +1,6 @@ +import { Events } from 'discord.js'; + +export const name = Events.MessageReactionAdd; +export async function execute(messageReaction, user) { + console.log(messageReaction, user); +} diff --git a/events/reactionRemove.js b/events/reactionRemove.js new file mode 100644 index 0000000..9fc1eaa --- /dev/null +++ b/events/reactionRemove.js @@ -0,0 +1,6 @@ +import { Events } from 'discord.js'; + +export const name = Events.MessageReactionRemove; +export async function execute(messageReaction, user) { + console.log(messageReaction, user); +}