diff options
Diffstat (limited to 'bot/src/events/ClientReady.js')
| -rw-r--r-- | bot/src/events/ClientReady.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/src/events/ClientReady.js b/bot/src/events/ClientReady.js index c806d6a..6a6b097 100644 --- a/bot/src/events/ClientReady.js +++ b/bot/src/events/ClientReady.js @@ -42,9 +42,9 @@ export default { ) .setColor(abEmbedColour); - let statusChannel = client.channels.cache.get(process.env.statusChannelID); + let statusChannel = client.channels.cache.get(process.env.STATUS_CHANNEL_ID); if (!statusChannel) return console.error('The status channel does not exist! Skipping.'); - await statusChannel.send({ embeds: [readyEmbed]}); + await statusChannel.send({ embeds: [readyEmbed] }); } setInterval(function() { |
