aboutsummaryrefslogtreecommitdiff
path: root/src/commands/config/joinRoles.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/config/joinRoles.ts')
-rw-r--r--src/commands/config/joinRoles.ts23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/commands/config/joinRoles.ts b/src/commands/config/joinRoles.ts
deleted file mode 100644
index 2a3031e..0000000
--- a/src/commands/config/joinRoles.ts
+++ /dev/null
@@ -1,23 +0,0 @@
-import { BushCommand, BushMessage, BushSlashMessage } from '@lib';
-
-export default class JoinRolesCommand extends BushCommand {
- public constructor() {
- super('joinRoles', {
- aliases: ['joinroles', 'joinrole', 'jr'],
- category: 'config',
- description: {
- content: 'This command has been deprecated, please use the config command instead',
- usage: 'joinroles <role>',
- examples: ['joinroles @member']
- },
- channel: 'guild',
- hidden: true,
- clientPermissions: ['SEND_MESSAGES'],
- userPermissions: ['SEND_MESSAGES', 'MANAGE_GUILD']
- });
- }
-
- public override async exec(message: BushMessage | BushSlashMessage): Promise<unknown> {
- return message.util.reply(`${util.emojis.error} 'This command has been deprecated, please use the config command instead'`);
- }
-}