1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-09 09:11:05 -09:00

Revert "added test to check for changeling cards having isAllCreatureTypes set to true"

This reverts commit 6d91ee69d4.
This commit is contained in:
Evan Kranzler 2021-01-10 19:38:48 -05:00
parent 6d91ee69d4
commit 0943ae1bb7

View file

@ -1301,10 +1301,6 @@ public class VerifyCardDataTest {
if (card.getAbilities().toArray().length == 1) { // all cards have 1 inner ability to cast
fail(card, "abilities", "card's abilities is empty, but ref have text");
}
if (card.getAbilities().contains(ChangelingAbility.getInstance()) && !card.isAllCreatureTypes()) {
fail(card, "abilities", "card has changeling ability but doesn't have isAllCreatureTypes");
}
}
private void checkWrongSymbolsInRules(Card card) {