aboutsummaryrefslogtreecommitdiff
path: root/src/commands/config/welcomeChannel.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/config/welcomeChannel.ts')
-rw-r--r--src/commands/config/welcomeChannel.ts22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/commands/config/welcomeChannel.ts b/src/commands/config/welcomeChannel.ts
deleted file mode 100644
index c94b416..0000000
--- a/src/commands/config/welcomeChannel.ts
+++ /dev/null
@@ -1,22 +0,0 @@
-import { BushCommand, BushMessage, BushSlashMessage } from '@lib';
-
-export default class WelcomeChannelCommand extends BushCommand {
- public constructor() {
- super('welcomeChannel', {
- aliases: ['welcomechannel', 'wc'],
- category: 'config',
- description: {
- content: 'This command has been deprecated, please use the config command instead',
- usage: 'welcomechannel [channel]',
- examples: ['welcomechannel #welcome']
- },
- 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'`);
- }
-}