From 78856d2e19b20aaac90346bf0fec177406eed06d Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 15 May 2021 12:58:19 -0400 Subject: [PATCH] join/leave aliases --- commands/util-voice/join.js | 2 +- commands/util-voice/leave.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/util-voice/join.js b/commands/util-voice/join.js index f4281d04..17efde17 100644 --- a/commands/util-voice/join.js +++ b/commands/util-voice/join.js @@ -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.', diff --git a/commands/util-voice/leave.js b/commands/util-voice/leave.js index 0133ff23..74139fce 100644 --- a/commands/util-voice/leave.js +++ b/commands/util-voice/leave.js @@ -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.',