aboutsummaryrefslogtreecommitdiff
path: root/bot.js
diff options
context:
space:
mode:
Diffstat (limited to 'bot.js')
-rw-r--r--bot.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/bot.js b/bot.js
index b8c07af..cb458c4 100644
--- a/bot.js
+++ b/bot.js
@@ -34,8 +34,9 @@ function playAudio() {
dispatcher.on('start', () => {
console.log('Now playing ' + audio);
- let serviceChannel = client.channels.cache.get('606602551634296968');
- serviceChannel.send('**Project Jul-2020 Bot:**\nNow playing ' + audio);
+ let statusChannel = client.channels.cache.get(config.statusChannel);
+ if (!statusChannel) return console.error('The channel does not exist!');
+ statusChannel.send('**Project Jul-2020 Bot:**\nNow playing ' + audio);
});
dispatcher.on('error', console.error);