1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-03-17 17:00:08 -09:00

* Fixed a problem of Kumena's Speaker caused by filter restrictions.

This commit is contained in:
LevelX2 2017-09-13 17:06:17 +02:00
parent c70b548464
commit 872fc6af7e

View file

@ -50,13 +50,10 @@ public class KumenasSpeaker extends CardImpl {
private static final FilterPermanent filter = new FilterPermanent("another Merfolk or an Island");
static {
filter.add(new AnotherPredicate());
filter.add(Predicates.or(
new SubtypePredicate(SubType.ISLAND),
Predicates.and(
new SubtypePredicate(SubType.MERFOLK),
new AnotherPredicate()
)
));
new SubtypePredicate(SubType.MERFOLK)));
}
public KumenasSpeaker(UUID ownerId, CardSetInfo setInfo) {