diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-03-01 23:05:35 -0500 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-03-01 23:05:35 -0500 |
commit | 5932844c5ddee2e0f751f1b8702c2cdfbeae575d (patch) | |
tree | de09d5d0ae866850c99e9f052978492360c0f746 /src/commands/utilities/highlight-add.ts | |
parent | 6d55282a4d9c238c1809384562e091e4085853ad (diff) | |
download | tanzanite-5932844c5ddee2e0f751f1b8702c2cdfbeae575d.tar.gz tanzanite-5932844c5ddee2e0f751f1b8702c2cdfbeae575d.tar.bz2 tanzanite-5932844c5ddee2e0f751f1b8702c2cdfbeae575d.zip |
feat(HighlightCommand): unrestrict command and disable regex
Diffstat (limited to 'src/commands/utilities/highlight-add.ts')
-rw-r--r-- | src/commands/utilities/highlight-add.ts | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/src/commands/utilities/highlight-add.ts b/src/commands/utilities/highlight-add.ts index 9c7506e..73c61d2 100644 --- a/src/commands/utilities/highlight-add.ts +++ b/src/commands/utilities/highlight-add.ts @@ -19,16 +19,16 @@ export default class HighlightAddCommand extends BushCommand { optional: !highlightCommandArgs.add[0].required, only: 'text', slashType: false - }, - { - id: 'regex', - description: highlightCommandArgs.add[1].description, - match: 'flag', - flag: '--regex', - prompt: highlightCommandArgs.add[1].description, - only: 'text', - slashType: false } + // { + // id: 'regex', + // description: highlightCommandArgs.add[1].description, + // match: 'flag', + // flag: '--regex', + // prompt: highlightCommandArgs.add[1].description, + // only: 'text', + // slashType: false + // } ], usage: [], examples: [], @@ -43,6 +43,8 @@ export default class HighlightAddCommand extends BushCommand { ) { assert(message.inGuild()); + args.regex = false; + if (!args.regex) { if (args.word.length < 2) return message.util.send(`${util.emojis.error} You can only highlight words that are longer than 2 characters.`); |