mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
- Completed fix of Merfolk Sovereign.
This commit is contained in:
@@ -14584,7 +14584,7 @@ public class CardFactory_Creatures {
|
||||
list.addAll(AllZone.Computer_Play.getCards());
|
||||
list = list.filter(new CardListFilter() {
|
||||
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);
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user