mirror of
https://github.com/magefree/mage.git
synced 2025-12-21 11:02:00 -08:00
rework skip
This commit is contained in:
parent
0490a62794
commit
28c1480d33
1 changed files with 3 additions and 4 deletions
|
|
@ -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");
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue