diff options
Diffstat (limited to 'commands/uhhhh.js')
| -rw-r--r-- | commands/uhhhh.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/commands/uhhhh.js b/commands/uhhhh.js index ccf94ff..e4d0330 100644 --- a/commands/uhhhh.js +++ b/commands/uhhhh.js @@ -1,3 +1,5 @@ +const voice_check_dialog = require('../utils/voice_check_dialog.js'); + module.exports = { name: 'uhhhh', aliases: ['moan'], @@ -12,10 +14,8 @@ module.exports = { dispatcher.on('end', () => { msg.member.voiceChannel.leave(); }); - } else if (msg.guild.voiceConnection) { - msg.reply('i\'m already playing that lol'); } else { - msg.reply('you need to join a voice channel first silly'); + voice_check_dialog.execute(msg); } } };
\ No newline at end of file |