Fixed Primal Wellspring and Pyromancer's Goggles being optional triggers

This commit is contained in:
Evan Kranzler 2017-09-17 13:22:42 -04:00
parent ff4445d181
commit 0b5bd900a6
2 changed files with 3 additions and 3 deletions

View file

@ -81,7 +81,7 @@ class PyrimalWellspringTriggeredAbility extends TriggeredAbilityImpl {
String abilityOriginalId;
public PyrimalWellspringTriggeredAbility(UUID abilityOriginalId, Effect effect) {
super(Zone.ALL, effect, true);
super(Zone.ALL, effect, false);
this.abilityOriginalId = abilityOriginalId.toString();
}

View file

@ -54,7 +54,7 @@ import mage.target.targetpointer.FixedTarget;
public class PyromancersGoggles extends CardImpl {
public PyromancersGoggles(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT},"{5}");
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{5}");
addSuperType(SuperType.LEGENDARY);
// {T}: Add {R} to your mana pool.
@ -89,7 +89,7 @@ class PyromancersGogglesTriggeredAbility extends TriggeredAbilityImpl {
String abilityOriginalId;
public PyromancersGogglesTriggeredAbility(UUID abilityOriginalId, Effect effect) {
super(Zone.ALL, effect, true);
super(Zone.ALL, effect, false);
this.abilityOriginalId = abilityOriginalId.toString();
}