From 81d69f983983ac71dbdbd5f13e2f2d8ddc35dced Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Sun, 5 Sep 2021 13:45:44 -0400 Subject: cleaning up and some imporvements to the stats command --- src/commands/moderation/evidence.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/commands/moderation/evidence.ts') diff --git a/src/commands/moderation/evidence.ts b/src/commands/moderation/evidence.ts index 96c3944..ae0a128 100644 --- a/src/commands/moderation/evidence.ts +++ b/src/commands/moderation/evidence.ts @@ -12,7 +12,7 @@ export default class EvidenceCommand extends BushCommand { }, args: [ { - id: 'required_argument', + id: 'case', type: 'string', prompt: { start: 'What would you like to set your first argument to be?', @@ -21,7 +21,7 @@ export default class EvidenceCommand extends BushCommand { } }, { - id: 'optional_argument', + id: 'evidence', type: 'string', prompt: { start: 'What would you like to set your second argument to be?', @@ -33,13 +33,13 @@ export default class EvidenceCommand extends BushCommand { slash: true, slashOptions: [ { - name: 'required_argument', + name: 'case', description: 'What would you like to set your first argument to be?', type: 'STRING', required: true }, { - name: 'optional_argument', + name: 'evidence', description: 'What would you like to set your second argument to be?', type: 'STRING', required: false @@ -55,6 +55,6 @@ export default class EvidenceCommand extends BushCommand { } public override async exec(message: BushMessage | BushSlashMessage): Promise { - return await message.util.reply(`${util.emojis.error} Do not use the template command.`); + return await message.util.reply(`${util.emojis.error} Soon:tm:.`); } } -- cgit