join/leave aliases

This commit is contained in:
Dragon Fire
2021-05-15 12:58:19 -04:00
parent 952a27d67d
commit 78856d2e19
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ module.exports = class JoinCommand extends Command {
constructor(client) {
super(client, {
name: 'join',
aliases: ['join-voice-channel', 'join-vc', 'join-voice', 'join-channel'],
aliases: ['join-voice-channel', 'join-vc', 'join-voice', 'join-channel', 'connect'],
group: 'util-voice',
memberName: 'join',
description: 'Joins your voice channel.',
+1 -1
View File
@@ -4,7 +4,7 @@ module.exports = class LeaveCommand extends Command {
constructor(client) {
super(client, {
name: 'leave',
aliases: ['leave-voice-channel', 'leave-vc', 'leave-voice', 'leave-channel'],
aliases: ['leave-voice-channel', 'leave-vc', 'leave-voice', 'leave-channel', 'disconnect'],
group: 'util-voice',
memberName: 'leave',
description: 'Leaves the current voice channel.',