added join and leave commands

This commit is contained in:
Hazem Krimi
2020-04-29 05:46:01 +01:00
parent f88d6ebe10
commit 6e1eaec9e9
5 changed files with 1786 additions and 5 deletions
+7
View File
@@ -0,0 +1,7 @@
module.exports = {
name: 'leave',
description: 'leaves a voice channel',
execute: async = (message, voiceChannel, args) => {
voiceChannel.leave();
}
};