mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
Fixed FilterBlockingCreature
This commit is contained in:
parent
45268269aa
commit
93804656ea
1 changed files with 2 additions and 2 deletions
|
@ -28,7 +28,7 @@
|
|||
|
||||
package mage.filter.common;
|
||||
|
||||
import mage.filter.predicate.permanent.BlockedPredicate;
|
||||
import mage.filter.predicate.permanent.BlockingPredicate;
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -42,7 +42,7 @@ public class FilterBlockingCreature extends FilterCreaturePermanent {
|
|||
|
||||
public FilterBlockingCreature(String name) {
|
||||
super(name);
|
||||
this.add(new BlockedPredicate());
|
||||
this.add(new BlockingPredicate());
|
||||
}
|
||||
|
||||
public FilterBlockingCreature(final FilterBlockingCreature filter) {
|
||||
|
|
Loading…
Reference in a new issue