aboutsummaryrefslogtreecommitdiff
path: root/src/commands/admin/PrefixCommand.ts
diff options
context:
space:
mode:
authorTymanWasTaken <32660892+tymanwastaken@users.noreply.github.com>2021-05-11 10:52:26 -0600
committerTymanWasTaken <32660892+tymanwastaken@users.noreply.github.com>2021-05-11 10:52:26 -0600
commit199d413119f3656d9f2da118f91a22a3cc55f6bb (patch)
tree7d1ba161a51bb6303e5a537f8043d07cfc325a76 /src/commands/admin/PrefixCommand.ts
parente0b2b559219d642d6b5353490ab60ae1a754b560 (diff)
downloadtanzanite-199d413119f3656d9f2da118f91a22a3cc55f6bb.tar.gz
tanzanite-199d413119f3656d9f2da118f91a22a3cc55f6bb.tar.bz2
tanzanite-199d413119f3656d9f2da118f91a22a3cc55f6bb.zip
whoops forgot about these
Diffstat (limited to 'src/commands/admin/PrefixCommand.ts')
-rw-r--r--src/commands/admin/PrefixCommand.ts30
1 files changed, 0 insertions, 30 deletions
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<void> {
- 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}\``
- );
- }
- }
-}