mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
[STX] fixed Big Play missing target
This commit is contained in:
parent
4711aa0ff3
commit
4499ac853d
1 changed files with 2 additions and 0 deletions
|
@ -9,6 +9,7 @@ import mage.cards.CardSetInfo;
|
|||
import mage.constants.CardType;
|
||||
import mage.constants.Duration;
|
||||
import mage.counters.CounterType;
|
||||
import mage.target.common.TargetCreaturePermanent;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
|
@ -30,6 +31,7 @@ public final class BigPlay extends CardImpl {
|
|||
this.getSpellAbility().addEffect(new AddCountersTargetEffect(
|
||||
CounterType.P1P1.createInstance()
|
||||
).setText("Put a +1/+1 counter on it"));
|
||||
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
|
||||
}
|
||||
|
||||
private BigPlay(final BigPlay card) {
|
||||
|
|
Loading…
Reference in a new issue