diff options
Diffstat (limited to 'commands/wahoo.js')
| -rw-r--r-- | commands/wahoo.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/commands/wahoo.js b/commands/wahoo.js index 713ee9d..a6e7c96 100644 --- a/commands/wahoo.js +++ b/commands/wahoo.js @@ -1,3 +1,5 @@ +const voice_check_dialog = require('../utils/voice_check_dialog.js'); + module.exports = { name: 'wahoo', aliases: ['mario'], @@ -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 |