mirror of
https://github.com/correl/mage.git
synced 2025-01-13 19:11:33 +00:00
fixed reflexive triggers triggering more than once
This commit is contained in:
parent
163601f005
commit
c1c631a705
3 changed files with 3 additions and 3 deletions
|
@ -105,7 +105,7 @@ class IsarethTheAwakenerCreateReflexiveTriggerEffect extends OneShotEffect {
|
|||
class IsarethTheAwakenerReflexiveTriggeredAbility extends DelayedTriggeredAbility {
|
||||
|
||||
public IsarethTheAwakenerReflexiveTriggeredAbility() {
|
||||
super(new IsarethTheAwakenerEffect(), Duration.OneUse, false);
|
||||
super(new IsarethTheAwakenerEffect(), Duration.OneUse, true);
|
||||
this.addEffect(new IsarethTheAwakenerReplacementEffect());
|
||||
}
|
||||
|
||||
|
|
|
@ -99,7 +99,7 @@ class SkyriderPatrolReflexiveTriggeredAbility extends DelayedTriggeredAbility {
|
|||
}
|
||||
|
||||
public SkyriderPatrolReflexiveTriggeredAbility() {
|
||||
super(new AddCountersTargetEffect(CounterType.P1P1.createInstance()), Duration.OneUse, false);
|
||||
super(new AddCountersTargetEffect(CounterType.P1P1.createInstance()), Duration.OneUse, true);
|
||||
this.addEffect(new GainAbilityTargetEffect(
|
||||
FlyingAbility.getInstance(),
|
||||
Duration.EndOfTurn
|
||||
|
|
|
@ -83,7 +83,7 @@ class SparktongueDragonCreateReflexiveTriggerEffect extends OneShotEffect {
|
|||
class SparktongueDragonReflexiveTriggeredAbility extends DelayedTriggeredAbility {
|
||||
|
||||
public SparktongueDragonReflexiveTriggeredAbility() {
|
||||
super(new DamageTargetEffect(3), Duration.OneUse, false);
|
||||
super(new DamageTargetEffect(3), Duration.OneUse, true);
|
||||
this.addTarget(new TargetAnyTarget());
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue