Fix Phyrexian Censor (fixes #10367)

This commit is contained in:
Grath 2023-05-19 19:54:47 -04:00 committed by GitHub
parent 60e488cf05
commit 697c55005e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -30,7 +30,7 @@ public final class PhyrexianCensor extends CardImpl {
private static final FilterPermanent filter = new FilterCreaturePermanent("non-Phyrexian creatures");
static {
filter.add(Predicates.or(SubType.PHYREXIAN.getPredicate()));
filter.add(Predicates.not(SubType.PHYREXIAN.getPredicate()));
}
public PhyrexianCensor(UUID ownerId, CardSetInfo setInfo) {
@ -130,4 +130,4 @@ class PhyrexianCensorWatcher extends Watcher {
.map
.getOrDefault(playerId, 0) > 0;
}
}
}