mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
- Fixed #5410
This commit is contained in:
parent
5a6bed313d
commit
a3206785ab
1 changed files with 2 additions and 1 deletions
|
@ -14,6 +14,7 @@ import mage.constants.CardType;
|
|||
import mage.constants.SubType;
|
||||
import mage.constants.Outcome;
|
||||
import mage.constants.TargetController;
|
||||
import mage.constants.Zone;
|
||||
import mage.filter.common.FilterControlledCreaturePermanent;
|
||||
import mage.filter.common.FilterCreaturePermanent;
|
||||
import mage.filter.predicate.permanent.ControllerPredicate;
|
||||
|
@ -62,7 +63,7 @@ public final class TemurWarShaman extends CardImpl {
|
|||
class TemurWarShamanTriggeredAbility extends TurnedFaceUpAllTriggeredAbility {
|
||||
|
||||
public TemurWarShamanTriggeredAbility() {
|
||||
super(new TemurWarShamanFightEffect(), new FilterControlledCreaturePermanent(), true);
|
||||
super(Zone.BATTLEFIELD, new TemurWarShamanFightEffect(), new FilterControlledCreaturePermanent(), true, true);
|
||||
}
|
||||
|
||||
public TemurWarShamanTriggeredAbility(final TemurWarShamanTriggeredAbility ability) {
|
||||
|
|
Loading…
Reference in a new issue