mirror of
https://github.com/correl/mage.git
synced 2024-11-22 03:00:11 +00:00
Fix Phyrexian Censor (fixes #10367)
This commit is contained in:
parent
60e488cf05
commit
697c55005e
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue