fix verify failure, remove skips

This commit is contained in:
theelk801 2024-04-04 11:36:01 -04:00
parent f0307394e3
commit e9ca4ebb74
2 changed files with 2 additions and 3 deletions

View file

@ -148,8 +148,6 @@ public class VerifyCardDataTest {
skipListAddName(SKIP_LIST_SUBTYPE, "UGL", "Miss Demeanor"); // uses multiple types as a joke card: Lady, of, Proper, Etiquette
skipListAddName(SKIP_LIST_SUBTYPE, "UGL", "Elvish Impersonators"); // subtype is "Elves" pun
skipListAddName(SKIP_LIST_SUBTYPE, "UND", "Elvish Impersonators");
skipListAddName(SKIP_LIST_SUBTYPE, "OTJ", "Stop Cold"); // tmp
skipListAddName(SKIP_LIST_SUBTYPE, "OTC", "Stella Lee, Wild Card"); // tmp
// number
// skipListAddName(SKIP_LIST_NUMBER, set, cardName);

View file

@ -32,7 +32,8 @@ public class CardNameUtil {
.replace("ü", "u")
.replace("É", "E")
.replace("ñ", "n")
.replace("®", "");
.replace("®", "")
.replace("", "");
}
private CardNameUtil() {