From 199d413119f3656d9f2da118f91a22a3cc55f6bb Mon Sep 17 00:00:00 2001 From: TymanWasTaken <32660892+tymanwastaken@users.noreply.github.com> Date: Tue, 11 May 2021 10:52:26 -0600 Subject: whoops forgot about these --- src/commands/admin/PrefixCommand.ts | 30 ------------------------------ src/commands/admin/prefix.ts | 30 ++++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+), 30 deletions(-) delete mode 100644 src/commands/admin/PrefixCommand.ts create mode 100644 src/commands/admin/prefix.ts (limited to 'src/commands/admin') diff --git a/src/commands/admin/PrefixCommand.ts b/src/commands/admin/PrefixCommand.ts deleted file mode 100644 index 8fb50f8..0000000 --- a/src/commands/admin/PrefixCommand.ts +++ /dev/null @@ -1,30 +0,0 @@ -import { BotCommand } from '../../lib/extensions/BotCommand'; -import { BotMessage } from '../../lib/extensions/BotMessage'; - -export default class PrefixCommand extends BotCommand { - constructor() { - super('prefix', { - aliases: ['prefix'], - args: [ - { - id: 'prefix' - } - ], - userPermissions: ['MANAGE_GUILD'] - }); - } - async exec( - message: BotMessage, - { prefix }: { prefix?: string } - ): Promise { - if (prefix) { - await message.settings.setPrefix(prefix); - await message.util.send(`Sucessfully set prefix to \`${prefix}\``); - } else { - await message.settings.setPrefix(this.client.config.prefix); - await message.util.send( - `Sucessfully reset prefix to \`${this.client.config.prefix}\`` - ); - } - } -} diff --git a/src/commands/admin/prefix.ts b/src/commands/admin/prefix.ts new file mode 100644 index 0000000..8fb50f8 --- /dev/null +++ b/src/commands/admin/prefix.ts @@ -0,0 +1,30 @@ +import { BotCommand } from '../../lib/extensions/BotCommand'; +import { BotMessage } from '../../lib/extensions/BotMessage'; + +export default class PrefixCommand extends BotCommand { + constructor() { + super('prefix', { + aliases: ['prefix'], + args: [ + { + id: 'prefix' + } + ], + userPermissions: ['MANAGE_GUILD'] + }); + } + async exec( + message: BotMessage, + { prefix }: { prefix?: string } + ): Promise { + if (prefix) { + await message.settings.setPrefix(prefix); + await message.util.send(`Sucessfully set prefix to \`${prefix}\``); + } else { + await message.settings.setPrefix(this.client.config.prefix); + await message.util.send( + `Sucessfully reset prefix to \`${this.client.config.prefix}\`` + ); + } + } +} -- cgit