mirror of
https://github.com/correl/mage.git
synced 2024-12-26 19:16:54 +00:00
Fixed Searing Meditation always targeting its controller. Closes #9372
This commit is contained in:
parent
ddf131570d
commit
16100228ac
1 changed files with 1 additions and 2 deletions
|
@ -21,9 +21,8 @@ public final class SearingMeditation extends CardImpl {
|
||||||
public SearingMeditation(UUID ownerId, CardSetInfo setInfo) {
|
public SearingMeditation(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.ENCHANTMENT},"{1}{R}{W}");
|
super(ownerId,setInfo,new CardType[]{CardType.ENCHANTMENT},"{1}{R}{W}");
|
||||||
|
|
||||||
|
|
||||||
// Whenever you gain life, you may pay {2}. If you do, Searing Meditation deals 2 damage to any target.
|
// Whenever you gain life, you may pay {2}. If you do, Searing Meditation deals 2 damage to any target.
|
||||||
Ability ability = new GainLifeControllerTriggeredAbility(new DoIfCostPaid(new DamageTargetEffect(2), new GenericManaCost(2)), false, true);
|
Ability ability = new GainLifeControllerTriggeredAbility(new DoIfCostPaid(new DamageTargetEffect(2), new GenericManaCost(2)), false, false);
|
||||||
ability.addTarget(new TargetAnyTarget());
|
ability.addTarget(new TargetAnyTarget());
|
||||||
this.addAbility(ability);
|
this.addAbility(ability);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue