Files
discord-bot/commands/leave.js
T
2020-04-29 05:46:01 +01:00

7 lines
175 B
JavaScript

module.exports = {
name: 'leave',
description: 'leaves a voice channel',
execute: async = (message, voiceChannel, args) => {
voiceChannel.leave();
}
};