mirror of
https://github.com/correl/mage.git
synced 2024-12-26 19:16:54 +00:00
* See Red - Fixed that it was wrongly sacrificed (fixes #4395).
This commit is contained in:
parent
8a1619f9b4
commit
78ac82a2d7
1 changed files with 2 additions and 1 deletions
|
@ -52,6 +52,7 @@ import mage.constants.TargetController;
|
|||
import mage.constants.Zone;
|
||||
import mage.target.TargetPermanent;
|
||||
import mage.target.common.TargetCreaturePermanent;
|
||||
import mage.watchers.common.AttackedThisTurnWatcher;
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -82,7 +83,7 @@ public class SeeRed extends CardImpl {
|
|||
this.addAbility(new ConditionalTriggeredAbility(
|
||||
new AtTheBeginOfNextEndStepDelayedTriggeredAbility(Zone.BATTLEFIELD, new SacrificeSourceEffect(), TargetController.YOU),
|
||||
new InvertCondition(ControllerAttackedThisTurnCondition.instance),
|
||||
"At the beginning of your end step, if you didn't attack with a creature this turn, sacrifice {this}."));
|
||||
"At the beginning of your end step, if you didn't attack with a creature this turn, sacrifice {this}."), new AttackedThisTurnWatcher());
|
||||
}
|
||||
|
||||
public SeeRed(final SeeRed card) {
|
||||
|
|
Loading…
Reference in a new issue