mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
Fixed bug that not controlled permanents could not be targeted.
This commit is contained in:
parent
8cf2514edb
commit
82bb03ba86
1 changed files with 2 additions and 2 deletions
|
@ -41,7 +41,7 @@ import mage.abilities.effects.common.DestroyTargetEffect;
|
|||
import mage.abilities.effects.common.UntapSourceEffect;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.filter.common.FilterControlledPermanent;
|
||||
import mage.filter.FilterPermanent;
|
||||
import mage.filter.predicate.Predicates;
|
||||
import mage.filter.predicate.mageobject.CardTypePredicate;
|
||||
import mage.target.Target;
|
||||
|
@ -52,7 +52,7 @@ import mage.target.TargetPermanent;
|
|||
* @author Loki
|
||||
*/
|
||||
public class EtherswornAdjudicator extends CardImpl<EtherswornAdjudicator> {
|
||||
private static final FilterControlledPermanent filter = new FilterControlledPermanent("creature or enchantment");
|
||||
private static final FilterPermanent filter = new FilterPermanent("creature or enchantment");
|
||||
|
||||
static {
|
||||
filter.add(Predicates.or(
|
||||
|
|
Loading…
Reference in a new issue