summaryrefslogtreecommitdiff
path: root/commands/voice/skipto.js
diff options
context:
space:
mode:
Diffstat (limited to 'commands/voice/skipto.js')
-rw-r--r--commands/voice/skipto.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/commands/voice/skipto.js b/commands/voice/skipto.js
index 86bff00..65febfd 100644
--- a/commands/voice/skipto.js
+++ b/commands/voice/skipto.js
@@ -19,20 +19,20 @@ module.exports = class SkipToVoice extends Command {
}
run(msg, { songNumber }) {
if (songNumber < 1 && songNumber >= msg.guild.musicData.queue.length) {
- return msg.reply('enter a valid song number dumb');
+ return msg.reply('enter a valid song number dumb ' + emoji.random());
}
var voiceChannel = msg.member.voice.channel;
- if (!voiceChannel) return msg.reply('join channel and try again for cool');
+ if (!voiceChannel) return msg.reply('join channel and try again for cool ' + emoji.random());
if (
typeof msg.guild.musicData.songDispatcher == 'undefined' ||
msg.guild.musicData.songDispatcher == null
) {
- return msg.reply('there is no song playing right now dumby');
+ return msg.reply('there is no song playing right now dumby ' + emoji.random());
}
if (msg.guild.musicData.queue < 1)
- return msg.reply('there are no songs in queue rn');
+ return msg.reply('there are no songs in queue rn ' + emoji.random());
msg.guild.musicData.queue.splice(0, songNumber - 1);
msg.guild.musicData.songDispatcher.end();