mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
fixed another verify bug
This commit is contained in:
parent
1701093d45
commit
ef0b4bdf58
1 changed files with 1 additions and 4 deletions
|
@ -1187,9 +1187,6 @@ public class VerifyCardDataTest {
|
|||
}
|
||||
|
||||
private void checkAll(Card card, MtgJsonCard ref, int cardIndex) {
|
||||
if (!checkName(ref)) {
|
||||
return;
|
||||
}
|
||||
if (!ONLY_TEXT) {
|
||||
checkCost(card, ref);
|
||||
checkPT(card, ref);
|
||||
|
@ -1482,7 +1479,7 @@ public class VerifyCardDataTest {
|
|||
|
||||
private void checkWrongAbilitiesText(Card card, MtgJsonCard ref, int cardIndex) {
|
||||
// checks missing or wrong text
|
||||
if (!card.getExpansionSetCode().equals(FULL_ABILITIES_CHECK_SET_CODE)) {
|
||||
if (!card.getExpansionSetCode().equals(FULL_ABILITIES_CHECK_SET_CODE) || !checkName(ref)) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue