diff options
Diffstat (limited to 'src/commands/config')
-rw-r--r-- | src/commands/config/muteRole.ts | 2 | ||||
-rw-r--r-- | src/commands/config/prefix.ts | 2 | ||||
-rw-r--r-- | src/commands/config/welcomeChannel.ts | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/commands/config/muteRole.ts b/src/commands/config/muteRole.ts index 6fda0b8..9a172be 100644 --- a/src/commands/config/muteRole.ts +++ b/src/commands/config/muteRole.ts @@ -27,9 +27,9 @@ export default class MuteRoleCommand extends BushCommand { slash: true, slashOptions: [ { - type: 'ROLE', name: 'role', description: "What would you like to set the server's mute role to?", + type: 'ROLE', required: true } ] diff --git a/src/commands/config/prefix.ts b/src/commands/config/prefix.ts index c7a1a9f..dc51671 100644 --- a/src/commands/config/prefix.ts +++ b/src/commands/config/prefix.ts @@ -26,9 +26,9 @@ export default class PrefixCommand extends BushCommand { slash: true, slashOptions: [ { - type: 'STRING', name: 'prefix', description: 'What would you like the new prefix to be?', + type: 'STRING', required: false } ] diff --git a/src/commands/config/welcomeChannel.ts b/src/commands/config/welcomeChannel.ts index f15e07d..71d59f8 100644 --- a/src/commands/config/welcomeChannel.ts +++ b/src/commands/config/welcomeChannel.ts @@ -27,9 +27,9 @@ export default class WelcomeChannelCommand extends BushCommand { slash: true, slashOptions: [ { - type: 'CHANNEL', name: 'channel', description: 'What channel would you like me to send welcome messages in?', + type: 'CHANNEL', required: false } ] |