fixed Jungle Village (#10095)

Co-authored-by: Daniel Eberhard <daniel.h.e@gmx.de>
This commit is contained in:
Merlingilb 2023-04-24 04:10:22 +02:00 committed by GitHub
parent f938a5b3b9
commit 14d7f980d1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -60,7 +60,7 @@ public final class JungleVillage extends CardImpl {
List<Predicate<MageObject>> subtypePredicates = new ArrayList<>();
subtypePredicates.add(SubType.PLAINS.getPredicate());
subtypePredicates.add(SubType.MOUNTAIN.getPredicate());
subtypePredicates.add(SubType.FAERIE.getPredicate());
subtypePredicates.add(SubType.FOREST.getPredicate());
filter.add(Predicates.or(subtypePredicates));
filter.add(SuperType.BASIC.getPredicate());
TargetCardInLibrary target = new TargetCardInLibrary(filter);