diff options
Diffstat (limited to 'src/commands/config/prefix.ts')
-rw-r--r-- | src/commands/config/prefix.ts | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/src/commands/config/prefix.ts b/src/commands/config/prefix.ts deleted file mode 100644 index 5cd75b3..0000000 --- a/src/commands/config/prefix.ts +++ /dev/null @@ -1,23 +0,0 @@ -import { BushCommand, BushMessage, BushSlashMessage } from '@lib'; - -export default class PrefixCommand extends BushCommand { - public constructor() { - super('prefix', { - aliases: ['prefix'], - category: 'config', - description: { - content: 'This command has been deprecated, please use the config command instead', - usage: 'prefix [prefix]', - examples: ['prefix', 'prefix -'] - }, - channel: 'guild', - hidden: true, - clientPermissions: ['SEND_MESSAGES'], - userPermissions: ['SEND_MESSAGES', 'MANAGE_GUILD'] - }); - } - - 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'`); - } -} |