From 71cd3ce3fcf911d79abd74d977beaf11038cc7dd Mon Sep 17 00:00:00 2001 From: jmlundeen Date: Fri, 29 Aug 2025 15:48:12 -0500 Subject: [PATCH] update gen-list-unimplemented-cards-for-set * remove periods from camel case name --- Utils/gen-list-unimplemented-cards-for-set.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Utils/gen-list-unimplemented-cards-for-set.pl b/Utils/gen-list-unimplemented-cards-for-set.pl index fbf345bf31d..560f76812f1 100755 --- a/Utils/gen-list-unimplemented-cards-for-set.pl +++ b/Utils/gen-list-unimplemented-cards-for-set.pl @@ -82,7 +82,7 @@ sub cardSort { sub toCamelCase { my $string = $_[0]; $string =~ s/\b([\w']+)\b/ucfirst($1)/ge; - $string =~ s/[-,\s\'!@#*\(\)]//g; + $string =~ s/[-,\s\'\.!@#*\(\)]//g; $string; }