diff options
| author | 8cy <[email protected]> | 2020-04-12 05:48:25 -0700 |
|---|---|---|
| committer | 8cy <[email protected]> | 2020-04-12 05:48:25 -0700 |
| commit | b9b82004cd5e7b64deb1b20e2ea17353f4d01deb (patch) | |
| tree | e896855b35174116bc5ddc6e716e4a7a8ff40df2 /commands/voice/leave.js | |
| parent | oop, v3.0.1 (diff) | |
| download | s5nical-b9b82004cd5e7b64deb1b20e2ea17353f4d01deb.tar.xz s5nical-b9b82004cd5e7b64deb1b20e2ea17353f4d01deb.zip | |
emojis for all :D, 3.0.2
Diffstat (limited to 'commands/voice/leave.js')
| -rw-r--r-- | commands/voice/leave.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/commands/voice/leave.js b/commands/voice/leave.js index 4779e9f..51456a6 100644 --- a/commands/voice/leave.js +++ b/commands/voice/leave.js @@ -15,16 +15,16 @@ module.exports = class LeaveVoice 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()); } if (!msg.guild.musicData.queue) - return msg.say('there are no songs in queue rn lol'); + return msg.say('there are no songs in queue rn lol ' + emoji.random()); msg.guild.musicData.songDispatcher.end(); msg.guild.musicData.queue.length = 0; return; |