- Completed fix of Merfolk Sovereign.

This commit is contained in:
jendave
2011-08-06 04:02:59 +00:00
parent ee8fe2bac9
commit d112bd4925

View File

@@ -14584,7 +14584,7 @@ public class CardFactory_Creatures {
list.addAll(AllZone.Computer_Play.getCards()); list.addAll(AllZone.Computer_Play.getCards());
list = list.filter(new CardListFilter() { list = list.filter(new CardListFilter() {
public boolean addCard(Card c) { public boolean addCard(Card c) {
return c.isCreature() && c.getType().contains("Merfolk") return c.isCreature() && (c.getType().contains("Merfolk") || c.getKeyword().contains("Changeling"))
&& CardFactoryUtil.canTarget(card, c); && CardFactoryUtil.canTarget(card, c);
} }
}); });