diff options
Diffstat (limited to 'src/commands/config/autoPublishChannel.ts')
-rw-r--r-- | src/commands/config/autoPublishChannel.ts | 23 |
1 files changed, 0 insertions, 23 deletions
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 <channel>', - examples: ['autopublishchannel #github'] - }, - channel: 'guild', - hidden: true, - clientPermissions: ['SEND_MESSAGES'], - userPermissions: ['MANAGE_GUILD', 'SEND_MESSAGES'] - }); - } - - public override async exec(message: BushMessage): Promise<unknown> { - return message.util.reply(`${util.emojis.error} 'This command has been deprecated, please use the config command instead'`); - } -} |