diff options
Diffstat (limited to 'bot/src/events/GuildCreate.js')
| -rw-r--r-- | bot/src/events/GuildCreate.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/src/events/GuildCreate.js b/bot/src/events/GuildCreate.js index 0c59bb1..c3cf034 100644 --- a/bot/src/events/GuildCreate.js +++ b/bot/src/events/GuildCreate.js @@ -19,7 +19,7 @@ export default { await guildSettings.create({ 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] }); } |
