fixed Growth-Chamber Guardian not triggering when it enters with counters

This commit is contained in:
Evan Kranzler 2019-01-20 11:28:22 -05:00
parent a79a74e7cf
commit 6466acb70a

View file

@ -20,7 +20,7 @@ public class OneOrMoreCountersAddedTriggeredAbility extends TriggeredAbilityImpl
}
public OneOrMoreCountersAddedTriggeredAbility(Effect effect, boolean optional, CounterType counterType) {
super(Zone.BATTLEFIELD, effect, true);
super(Zone.ALL, effect, true);
this.counterType = counterType;
}