mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
another fix for Monstrous Step
This commit is contained in:
parent
a07acc895e
commit
5a9b73e4e6
1 changed files with 2 additions and 2 deletions
|
@ -15,7 +15,7 @@ import mage.filter.predicate.mageobject.AnotherTargetPredicate;
|
|||
import mage.game.Game;
|
||||
import mage.game.permanent.Permanent;
|
||||
import mage.target.TargetPermanent;
|
||||
import mage.target.common.TargetControlledCreaturePermanent;
|
||||
import mage.target.common.TargetCreaturePermanent;
|
||||
import mage.watchers.common.BlockedAttackerWatcher;
|
||||
|
||||
import java.util.UUID;
|
||||
|
@ -40,7 +40,7 @@ public final class MonstrousStep extends CardImpl {
|
|||
this.getSpellAbility().addEffect(new MonstrousStepEffect());
|
||||
this.getSpellAbility().addWatcher(new BlockedAttackerWatcher());
|
||||
|
||||
TargetPermanent target = new TargetControlledCreaturePermanent();
|
||||
TargetPermanent target = new TargetCreaturePermanent();
|
||||
target.setTargetTag(1);
|
||||
this.getSpellAbility().addTarget(target);
|
||||
target = new TargetPermanent(0, 1, filter, false);
|
||||
|
|
Loading…
Reference in a new issue