diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2022-03-29 00:03:42 -0400 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2022-03-29 00:03:42 -0400 |
| commit | 18f0b9d60c44f69fad6eb4716659c79f08f46711 (patch) | |
| tree | 9f18c1753bfb3fd695a0cc26068d3dc1515cb153 /AudioBackend.js | |
| parent | 08aae8cd9e5417bd7451b9af2e3190bf9c6a4e43 (diff) | |
| download | DLAP-18f0b9d60c44f69fad6eb4716659c79f08f46711.tar.gz DLAP-18f0b9d60c44f69fad6eb4716659c79f08f46711.tar.bz2 DLAP-18f0b9d60c44f69fad6eb4716659c79f08f46711.zip | |
Permission system on certain commands
Diffstat (limited to 'AudioBackend.js')
| -rw-r--r-- | AudioBackend.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/AudioBackend.js b/AudioBackend.js index c53c57e..e3e31cc 100644 --- a/AudioBackend.js +++ b/AudioBackend.js @@ -43,7 +43,7 @@ export function voiceInit(bot) { }); connection.on(VoiceConnectionStatus.Ready, () => { - console.log('Ready to blast music!'); + console.log('Ready to blast some beats!'); }); connection.on(VoiceConnectionStatus.Destroyed, () => { @@ -51,7 +51,7 @@ export function voiceInit(bot) { }); player.on('idle', () => { - console.log("Music has finished playing, shuffling music...") + console.log("Music has finished playing, shuffling the beats...") playAudio(bot); }) |
