From dc1961d2247bdbbcad8dfa720e3a46e004e0262d Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Tue, 12 Jul 2022 19:49:42 -0400 Subject: Fixed about; No longer requiring guild id for deploy command --- AudioBackend.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'AudioBackend.js') 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); } -- cgit v1.2.3