aboutsummaryrefslogtreecommitdiff
path: root/AudioBackend.js
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2022-07-12 19:49:42 -0400
committerAndrew Lee <alee14498@protonmail.com>2022-07-12 19:49:42 -0400
commitdc1961d2247bdbbcad8dfa720e3a46e004e0262d (patch)
treed2ac60a9c2af9edab3eef38635d01bbdf077753c /AudioBackend.js
parent6feb5b84b217984a98827d3008ac598ba46061a0 (diff)
downloadDLAP-dc1961d2247bdbbcad8dfa720e3a46e004e0262d.tar.gz
DLAP-dc1961d2247bdbbcad8dfa720e3a46e004e0262d.tar.bz2
DLAP-dc1961d2247bdbbcad8dfa720e3a46e004e0262d.zip
Fixed about; No longer requiring guild id for deploy command
Diffstat (limited to 'AudioBackend.js')
-rw-r--r--AudioBackend.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/AudioBackend.js b/AudioBackend.js
index 5948789..43e7b2f 100644
--- a/AudioBackend.js
+++ b/AudioBackend.js
@@ -63,7 +63,7 @@ export async function voiceInit(bot) {
});
player.on('idle', () => {
- console.log('Beat has finished playing, now to the next beat...');
+ console.log('Beat has finished playing, now playing next beat...');
nextAudio(bot);
});
@@ -88,10 +88,10 @@ export async function orderPlaylist(bot) {
export async function shufflePlaylist(bot) {
console.log('Shuffling beats...');
- currentTrack = 0;
shuffleArray(files);
- console.log(files);
console.log('Playing beats by shuffle...');
+ currentTrack = 0;
+ console.log(files);
audio = files[currentTrack];
return await playAudio(bot);
}