rework skip

This commit is contained in:
theelk801 2025-05-11 22:41:34 -04:00
parent 0490a62794
commit 28c1480d33

View file

@ -307,6 +307,9 @@ public class VerifyCardDataTest {
check(((CardWithHalves) card).getLeftHalfCard(), cardIndex); check(((CardWithHalves) card).getLeftHalfCard(), cardIndex);
check(((CardWithHalves) card).getRightHalfCard(), cardIndex); check(((CardWithHalves) card).getRightHalfCard(), cardIndex);
} else if (card instanceof CardWithSpellOption) { } else if (card instanceof CardWithSpellOption) {
if (card.isLand()) { // temporary until scryfall fixes the mana cost issue for adventure lands
continue;
}
check(card, cardIndex); check(card, cardIndex);
check(((CardWithSpellOption) card).getSpellCard(), cardIndex); check(((CardWithSpellOption) card).getSpellCard(), cardIndex);
} else { } else {
@ -1675,10 +1678,6 @@ public class VerifyCardDataTest {
// both sides have main card info // both sides have main card info
return; return;
} }
if (card instanceof AdventureCard && card.isLand()) {
// temporary until scryfall fixes the mana cost issue for adventure lands
return;
}
checkAll(card, ref, cardIndex); checkAll(card, ref, cardIndex);
} else if (!CHECK_ONLY_ABILITIES_TEXT) { } else if (!CHECK_ONLY_ABILITIES_TEXT) {
warn(card, "Can't find card in mtgjson to verify"); warn(card, "Can't find card in mtgjson to verify");