mirror of
https://github.com/correl/mage.git
synced 2024-11-25 11:09:53 +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) {
|
if (!ONLY_TEXT) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
if (checkedNames.contains(ref.name)) {
|
if (checkedNames.contains(ref.getRealCardName())) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
checkedNames.add(ref.name);
|
checkedNames.add(ref.getRealCardName());
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue