spjspj - gen-existing-cards-by-set.pl "Commander 2016"

This commit is contained in:
spjspj 2016-10-29 18:39:46 +11:00
parent d1cd038485
commit c3a03c1a89
2 changed files with 159 additions and 2 deletions

View file

@ -163,13 +163,13 @@ foreach $name_collectorid (sort @setCards)
if (!exists ($alreadyIn{$cardNr})) {
# Go Looking for the existing implementation..
if (-e $fn) {
$implemented {$str} = 1;
$implementedButNotInSetYet {$str} = 1;
} else {
$unimplemented {"$str"} = 1;
}
} else {
if (-e $fn) {
$implementedButNotInSetYet {$str} = 1;
$implemented {$str} = 1;
} else {
$unimplemented {$str} = 1;
}