From 965c6ba9a9aff73e8daf486ce414667933628b66 Mon Sep 17 00:00:00 2001 From: Zerio <43386412+ZerioDev@users.noreply.github.com> Date: Wed, 24 Jun 2020 19:16:12 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Support=20playlists?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- commands/play.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/play.js b/commands/play.js index 52a2bec..f8b1d41 100644 --- a/commands/play.js +++ b/commands/play.js @@ -27,7 +27,7 @@ exports.run = async (client, message, args) => { // Else, play the song const result = await client.player.play(message.member.voice.channel, args.join(" ")); if(result.type === 'playlist'){ - message.channel.send(`${result.tracks.length} songs added to the queue ${emotes.music}\nCurrently playing **${result.tracks[0].name}**!`); + message.channel.send(`${result.tracks.length} songs added to the queue ${emotes.music}\nCurrently playing ${result.tracks[0].name} !`); } else { message.channel.send(`Currently playing ${result.name} ${emotes.music}`); }