From c59fcb6a157103fa0e908efd37205f65a6d09980 Mon Sep 17 00:00:00 2001 From: Zerio <43386412+ZerioDev@users.noreply.github.com> Date: Fri, 24 Apr 2020 18:08:06 +0200 Subject: [PATCH] Update shuffle.js --- commands/shuffle.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/shuffle.js b/commands/shuffle.js index bfca2b9..0040a2b 100644 --- a/commands/shuffle.js +++ b/commands/shuffle.js @@ -7,7 +7,7 @@ module.exports.run = async (client, message) => { if(!client.player.isPlaying(message.guild.id)) return message.channel.send(`**No music playing on this server ${emotes.error}**`); client.player.shuffle(message.guild.id); - return message.channel.send(`Queue shuffled ${emotes.success}`); + return message.channel.send(`**Queue shuffled ${emotes.success}**`); };