mirror of
https://github.com/correl/mage.git
synced 2024-11-25 03:00:11 +00:00
fixed verify skipping half of each transforming dfc
This commit is contained in:
parent
795422ba6b
commit
f74336eb73
1 changed files with 2 additions and 2 deletions
|
@ -1248,10 +1248,10 @@ public class VerifyCardDataTest {
|
|||
if (!ONLY_TEXT) {
|
||||
return true;
|
||||
}
|
||||
if (checkedNames.contains(ref.name)) {
|
||||
if (checkedNames.contains(ref.getRealCardName())) {
|
||||
return false;
|
||||
}
|
||||
checkedNames.add(ref.name);
|
||||
checkedNames.add(ref.getRealCardName());
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue