aboutsummaryrefslogtreecommitdiff
path: root/src/commands/config/punishmentFooter.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/config/punishmentFooter.ts')
-rw-r--r--src/commands/config/punishmentFooter.ts23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/commands/config/punishmentFooter.ts b/src/commands/config/punishmentFooter.ts
deleted file mode 100644
index 79e3df3..0000000
--- a/src/commands/config/punishmentFooter.ts
+++ /dev/null
@@ -1,23 +0,0 @@
-import { BushCommand, BushMessage, BushSlashMessage } from '@lib';
-
-export default class PunishmentFooterCommand extends BushCommand {
- public constructor() {
- super('punishmentFooter', {
- aliases: ['punishmentfooter'],
- category: 'config',
- description: {
- content: 'This command has been deprecated, please use the config command instead',
- usage: 'punishmentfooter [message]',
- examples: ['punishmentfooter', 'prefix you can appeal at https://example.com.']
- },
- 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'`);
- }
-}