From 815fbcd63ad68b41e9107967d95230385597ec41 Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Wed, 1 Jun 2022 17:28:10 -0400 Subject: fix(SuperUserCommand): invalid helpArgs --- src/commands/dev/superUser.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/commands/dev') diff --git a/src/commands/dev/superUser.ts b/src/commands/dev/superUser.ts index ce23da5..57e2b86 100644 --- a/src/commands/dev/superUser.ts +++ b/src/commands/dev/superUser.ts @@ -17,15 +17,13 @@ export default class SuperUserCommand extends BushCommand { { id: 'action', description: 'Whether to add or remove a user from the superuser list.', - readableType: 'add|remove', - slashType: false + readableType: 'add|remove' }, { id: 'user', description: 'The user to add/remove from the superuser list.', type: 'user', - match: 'restContent', - slashType: false + match: 'restContent' } ] }); -- cgit