summaryrefslogtreecommitdiff
path: root/utils/voice_check_dialog.js
blob: fabf1a8035a7e530c14ea404ad7e926532b498ab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
module.exports = {
    name: 'voice_check_dialog',
    description: '',
    async execute(msg, args, bot) {
        if (msg.guild.voiceConnection) {
            msg.reply('i\'m already playing that lol');
        } else {
            msg.reply('you need to join a voice channel first silly');
        }
    }
};