This commit is contained in:
Jeff Wadsworth 2021-09-23 15:30:40 -05:00
parent 4c88d2ae5e
commit 71bebad14a

View file

@ -42,7 +42,7 @@ public final class SmolderingEgg extends CardImpl {
// Whenever you cast an instant or sorcery spell, put a number of ember counters on Smoldering Egg equal to the amount of mana spent to cast that spell. Then if Smoldering Egg has seven or more ember counters on it, remove them and transform Smoldering Egg.
this.addAbility(new TransformAbility());
this.addAbility(new SpellCastControllerTriggeredAbility(
new SmolderingEggEffect(), StaticFilters.FILTER_SPELL_AN_INSTANT_OR_SORCERY, false
new SmolderingEggEffect(), StaticFilters.FILTER_SPELL_AN_INSTANT_OR_SORCERY, false, true
));
}