Merge pull request #3089 from Darkside-/master

fixed Mistform creature types and verify test for phyrexian mana
This commit is contained in:
Derek M 2017-04-11 15:42:23 -04:00 committed by GitHub
commit a5b32bc181
2 changed files with 2 additions and 2 deletions

View file

@ -51,7 +51,7 @@ public class MistformUltimus extends CardImpl {
this.toughness = new MageInt(3);
// Mistform Ultimus is every creature type.
this.subtype.add(ChangelingAbility.ALL_CREATURE_TYPE); // "All Creature Type"
this.addAbility(ChangelingAbility.getInstance());
}
public MistformUltimus(final MistformUltimus card) {

View file

@ -211,7 +211,7 @@ public class VerifyCardDataTest {
cost = null;
}
if (cost != null) {
cost = cost.replaceAll("P\\}", "/P}");
cost = cost.replaceAll("P\\}", "P}");
}
if (!Objects.equals(cost, expected)) {
fail(card, "cost", cost + " != " + expected);