1 2 3 4 5 6 7 8 9 10 11 12
module.exports = { name: 'leave', description: '', execute(msg, args, bot) { if (msg.guild.voiceConnection) { msg.guild.voiceConnection.disconnect(); msg.reply('succesfully left voice channel'); } else { msg.reply('i\'m not in a voice channel'); } } };