diff options
Diffstat (limited to 'commands/voice/resume.js')
| -rw-r--r-- | commands/voice/resume.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/commands/voice/resume.js b/commands/voice/resume.js index 1966d3a..dfd69f8 100644 --- a/commands/voice/resume.js +++ b/commands/voice/resume.js @@ -14,13 +14,13 @@ module.exports = class ResumeVoice 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.say('song resumed :play_pause:'); |