Update shuffle.js

This commit is contained in:
Zerio
2020-04-24 18:08:06 +02:00
committed by GitHub
parent ce3029ce75
commit c59fcb6a15

View File

@@ -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}**`);
};