diff options
Diffstat (limited to 'commands/voice/loop.js')
| -rw-r--r-- | commands/voice/loop.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/commands/voice/loop.js b/commands/voice/loop.js index 01bf48d..3679b4f 100644 --- a/commands/voice/loop.js +++ b/commands/voice/loop.js @@ -15,13 +15,13 @@ module.exports = class LoopVoice extends Command { } run(msg) { var voiceChannel = msg.member.voice.channel; - if (!voiceChannel) return msg.reply('join a channel and try again'); + if (!voiceChannel) return msg.reply('join a channel and try again ' + emoji.random()); if ( typeof msg.guild.musicData.songDispatcher == 'undefined' || msg.guild.musicData.songDispatcher == null ) { - return msg.reply('there isn\'t a song playing right now lol'); + return msg.reply('there isn\'t a song playing right now lol ' + emoji.random()); } msg.channel.send( `${msg.guild.musicData.nowPlaying.title} added to queue ` + emoji.random() |