aboutsummaryrefslogtreecommitdiff
path: root/AudioBackend.js
diff options
context:
space:
mode:
Diffstat (limited to 'AudioBackend.js')
-rw-r--r--AudioBackend.js4
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);
})