From 1eded156f74f389f3c9d32d5e3bdeb93db7f9cbe Mon Sep 17 00:00:00 2001 From: MatteZ02 <47610069+MatteZ02@users.noreply.github.com> Date: Fri, 19 Jul 2019 12:20:22 +0300 Subject: [PATCH] Update index.js --- index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.js b/index.js index e78e1da1..b84a3508 100644 --- a/index.js +++ b/index.js @@ -166,10 +166,10 @@ Please provide a value to select one of the search results ranging from __1-10__ if (!serverQueue) return msg.channel.send(":x: There is nothing in the queue."); var queuemessage = `__**Song queue:**__ - ${serverQueue.songs.map(song => `**-** ${song.title}`).join("\n")} - **Now playing:** ${serverQueue.songs[0].title} :musical_note: `; +${serverQueue.songs.map(song => `**-** ${song.title}`).join("\n")} +**Now playing:** ${serverQueue.songs[0].title} :musical_note: `; if (queuemessage.length > 2000) { - return msg.channel.send(":x: The queue has too many songs in it to show all in this channel. Try again after a few songs"); + return msg.channel.send(":x: The queue has too many songs in it to show all in this channel. Try again after a few songs."); } return msg.channel.send(queuemessage); } else if (command === 'pause') {