From 084a815f3799764d2dd697e8c693c7f80e0c7ab7 Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Wed, 23 Feb 2022 21:38:40 -0500 Subject: feat(hl): make functional, no cool downs yet, restrcited to su --- src/commands/utilities/highlight-!.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/commands/utilities/highlight-!.ts') 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 }); } -- cgit