aboutsummaryrefslogtreecommitdiff
path: root/bot/src/events/GuildDelete.js
diff options
context:
space:
mode:
authorAndrew Lee <andrew@alee14.me>2025-03-23 01:39:11 -0400
committerAndrew Lee <andrew@alee14.me>2025-03-23 01:39:11 -0400
commitd7c46a9eae28046bb26da182abc298dc18ed5a10 (patch)
treea1f9955a757b150b88ed5398ef851ab2d1d4a46b /bot/src/events/GuildDelete.js
parentb60e681998a456adecb93b5fe04b66ad4ac9abb6 (diff)
downloadAleeBot-d7c46a9eae28046bb26da182abc298dc18ed5a10.tar.gz
AleeBot-d7c46a9eae28046bb26da182abc298dc18ed5a10.tar.bz2
AleeBot-d7c46a9eae28046bb26da182abc298dc18ed5a10.zip
Replacing Astro with Next.JS; Prefix warning; Consistent env vars
Diffstat (limited to 'bot/src/events/GuildDelete.js')
-rw-r--r--bot/src/events/GuildDelete.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/src/events/GuildDelete.js b/bot/src/events/GuildDelete.js
index 63c3c5b..5cdd88a 100644
--- a/bot/src/events/GuildDelete.js
+++ b/bot/src/events/GuildDelete.js
@@ -22,7 +22,7 @@ export default {
await guildSettings.destroy({ where: { guildID: guild.id } });
}
- let statusChannel = guild.client.channels.cache.get(process.env.statusChannelID);
+ let statusChannel = guild.client.channels.cache.get(process.env.STATUS_CHANNEL_ID);
if (!statusChannel) return;
await statusChannel.send({ embeds: [logEmbed] });
}