summaryrefslogtreecommitdiff
path: root/commands/voice/shuffle.js
diff options
context:
space:
mode:
author8cy <[email protected]>2020-04-12 05:48:25 -0700
committer8cy <[email protected]>2020-04-12 05:48:25 -0700
commitb9b82004cd5e7b64deb1b20e2ea17353f4d01deb (patch)
treee896855b35174116bc5ddc6e716e4a7a8ff40df2 /commands/voice/shuffle.js
parentoop, v3.0.1 (diff)
downloads5nical-b9b82004cd5e7b64deb1b20e2ea17353f4d01deb.tar.xz
s5nical-b9b82004cd5e7b64deb1b20e2ea17353f4d01deb.zip
emojis for all :D, 3.0.2
Diffstat (limited to 'commands/voice/shuffle.js')
-rw-r--r--commands/voice/shuffle.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/commands/voice/shuffle.js b/commands/voice/shuffle.js
index 0f9210c..3771f16 100644
--- a/commands/voice/shuffle.js
+++ b/commands/voice/shuffle.js
@@ -15,17 +15,17 @@ module.exports = class ShuffleVoice extends Command {
}
run(msg) {
var voiceChannel = msg.member.voice.channel;
- if (!voiceChannel) return msg.reply('join channel and try again k');
+ if (!voiceChannel) return msg.reply('join channel and try again k ' + emoji.random());
if (
typeof msg.guild.musicData.songDispatcher == 'undefined' ||
msg.guild.musicData.songDispatcher == null
) {
- return msg.reply('there is no song playing right now');
+ return msg.reply('there is no song playing right now ' + emoji.random());
}
if (msg.guild.musicData.queue.length < 1)
- return msg.say('There are no songs in queue');
+ return msg.say('There are no songs in queue ' + emoji.random());
shuffleQueue(msg.guild.musicData.queue);