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'); } } };