📝 Correction

This commit is contained in:
Zerio
2020-11-26 22:18:09 +01:00
committed by GitHub
parent 82287c3e41
commit 109e4d1307

View File

@@ -2,7 +2,7 @@ exports.run = async (client, message) => {
if (!message.member.voice.channel) return message.channel.send(`${client.emotes.error} - You're not in a voice channel !`); if (!message.member.voice.channel) return message.channel.send(`${client.emotes.error} - You're not in a voice channel !`);
if (!client.player.getQueue(message)) return message.channel.send(`${client.emotes.error} - No songs currently playing !`); if (!client.player.getQueue(message)) return message.channel.send(`${client.emotes.error} - No music currently playing !`);
client.player.pause(message); client.player.pause(message);