From 930b1a46830567fd51780f301e550dbf4a87c7f3 Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Wed, 1 Sep 2021 22:21:06 -0400 Subject: remove old config commands --- src/commands/config/autoPublishChannel.ts | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 src/commands/config/autoPublishChannel.ts (limited to 'src/commands/config/autoPublishChannel.ts') diff --git a/src/commands/config/autoPublishChannel.ts b/src/commands/config/autoPublishChannel.ts deleted file mode 100644 index d691a7f..0000000 --- a/src/commands/config/autoPublishChannel.ts +++ /dev/null @@ -1,23 +0,0 @@ -import { BushCommand, BushMessage } from '@lib'; - -export default class AutoPublishChannelCommand extends BushCommand { - public constructor() { - super('autoPublishChannel', { - aliases: ['autopublishchannel', 'apc', 'publishchannel', 'autopublishchannels', 'publishchannels', 'autopublish'], - category: 'config', - description: { - content: 'This command has been deprecated, please use the config command instead', - usage: 'autopublishchannel ', - examples: ['autopublishchannel #github'] - }, - channel: 'guild', - hidden: true, - clientPermissions: ['SEND_MESSAGES'], - userPermissions: ['MANAGE_GUILD', 'SEND_MESSAGES'] - }); - } - - public override async exec(message: BushMessage): Promise { - return message.util.reply(`${util.emojis.error} 'This command has been deprecated, please use the config command instead'`); - } -} -- cgit