From 6fb4472c2038bb73f6a5ff6595812dddd2c9ccf1 Mon Sep 17 00:00:00 2001 From: BinuDR <36463075+BinuDR@users.noreply.github.com> Date: Sat, 7 Dec 2024 22:21:40 -0600 Subject: [PATCH] [script][clerk-tools] - Case insensitive flag added to regex Made the art toolset regex case insensitive. --- clerk-tools.lic | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clerk-tools.lic b/clerk-tools.lic index ba77cfc8b1..d3683c0b3b 100644 --- a/clerk-tools.lic +++ b/clerk-tools.lic @@ -4,7 +4,7 @@ class Clerk def initialize arg_definitions = [ [ - { name: 'toolset', regex: /forging|outfitting|engineering|alchemy|enchanting|custom=\w+/, description: 'What set of tools to use.' }, + { name: 'toolset', regex: /forging|outfitting|engineering|alchemy|enchanting|custom=\w+/i, description: 'What set of tools to use.' }, { name: 'action', options: %w[get store], description: 'Whether to get tools, or store them with the clerk' } ] ]