diff options
Diffstat (limited to 'src/commands/utilities/highlight-!.ts')
-rw-r--r-- | src/commands/utilities/highlight-!.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/commands/utilities/highlight-!.ts b/src/commands/utilities/highlight-!.ts index 687990f..dd6da8d 100644 --- a/src/commands/utilities/highlight-!.ts +++ b/src/commands/utilities/highlight-!.ts @@ -40,7 +40,7 @@ export const highlightCommandArgs: { name: 'target', description: 'What user/channel would you like to prevent from triggering your highlights?', retry: '{error} Enter a valid user or channel.', - type: ApplicationCommandOptionType.Mentionable, + type: ApplicationCommandOptionType.String, required: true } ], @@ -49,7 +49,7 @@ export const highlightCommandArgs: { name: 'target', description: 'What user/channel would you like to allow triggering your highlights again?', retry: '{error} Enter a valid user or channel.', - type: ApplicationCommandOptionType.Mentionable, + type: ApplicationCommandOptionType.String, required: true } ], @@ -105,7 +105,7 @@ export default class HighlightCommand extends BushCommand { channel: 'guild', clientPermissions: (m) => util.clientSendAndPermCheck(m), userPermissions: [], - ownerOnly: true + superUserOnly: true }); } |