aboutsummaryrefslogtreecommitdiff
path: root/src/commands/utilities/whoHasRole.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/utilities/whoHasRole.ts')
-rw-r--r--src/commands/utilities/whoHasRole.ts26
1 files changed, 8 insertions, 18 deletions
diff --git a/src/commands/utilities/whoHasRole.ts b/src/commands/utilities/whoHasRole.ts
index a457756..45cf77f 100644
--- a/src/commands/utilities/whoHasRole.ts
+++ b/src/commands/utilities/whoHasRole.ts
@@ -6,31 +6,21 @@ export default class WhoHasRoleCommand extends BushCommand {
super('whoHasRole', {
aliases: ['who-has-role', 'whr', 'dump'],
category: 'utilities',
- description: {
- content: 'Allows you to view what users have a certain role.',
- usage: ['who-has-role <role>'],
- examples: ['who-has-role admin']
- },
+ description: 'Allows you to view what users have a certain role.',
+ usage: ['who-has-role <role>'],
+ examples: ['who-has-role admin'],
args: [
{
id: 'role',
+ description: 'The role to find the users of.',
type: 'role',
- prompt: {
- start: 'What role would you like to find the users of?',
- retry: '{error} Pick a valid role.',
- optional: false
- }
+ prompt: 'What role would you like to find the users of?',
+ retry: '{error} Pick a valid role.',
+ optional: false,
+ slashType: 'ROLE'
}
],
slash: true,
- slashOptions: [
- {
- name: 'role',
- description: 'What role would you like to find the users of?',
- type: 'ROLE',
- required: true
- }
- ],
channel: 'guild',
clientPermissions: (m) => util.clientSendAndPermCheck(m),
userPermissions: [],