blob: 03701be87a3fdcae043825e18469c0a9fbf1a0b6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
module.exports = {
name: 'leave',
aliases: ['l'],
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');
}
}
};
|