diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2020-07-20 20:17:40 -0400 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2020-07-20 20:17:40 -0400 |
| commit | 354a658cc3ec8c8c15232c70eb348a9bc73f95a0 (patch) | |
| tree | edfa44fbf3b370831f57b43db8246539ead12109 /bot.js | |
| parent | f352357df92d7d74a1c3e3bab79f24634dff8d32 (diff) | |
| download | DLAP-354a658cc3ec8c8c15232c70eb348a9bc73f95a0.tar.gz DLAP-354a658cc3ec8c8c15232c70eb348a9bc73f95a0.tar.bz2 DLAP-354a658cc3ec8c8c15232c70eb348a9bc73f95a0.zip | |
Made the status channel customizable
Diffstat (limited to 'bot.js')
| -rw-r--r-- | bot.js | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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); |
