aboutsummaryrefslogtreecommitdiff
path: root/src/commands/config/punishmentFooter.ts
blob: 79e3df39f9ac8f29689555672d9c9666d7061ccd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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'`);
	}
}