From 000acd20aa97f0ba36e33d1dd6e810404a382e1a Mon Sep 17 00:00:00 2001 From: Baipyrus Date: Tue, 6 Feb 2024 21:25:47 +0100 Subject: [PATCH] clean up: format --- events/reactions/reactionAdd.js | 1 + events/reactions/reactionRemove.js | 1 + 2 files changed, 2 insertions(+) diff --git a/events/reactions/reactionAdd.js b/events/reactions/reactionAdd.js index f907e7f..b12a43a 100644 --- a/events/reactions/reactionAdd.js +++ b/events/reactions/reactionAdd.js @@ -1,6 +1,7 @@ import { config } from 'dotenv'; import { Events } from 'discord.js'; import { Message, RoleEmojiPair } from '../../database.js'; + config(); export const name = Events.MessageReactionAdd; diff --git a/events/reactions/reactionRemove.js b/events/reactions/reactionRemove.js index 2c0f2e3..f91dd08 100644 --- a/events/reactions/reactionRemove.js +++ b/events/reactions/reactionRemove.js @@ -1,6 +1,7 @@ import { config } from 'dotenv'; import { Events } from 'discord.js'; import { Message, RoleEmojiPair } from '../../database.js'; + config(); export const name = Events.MessageReactionRemove;