mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
[40K] Fix Kill! Maim! Burn! not allowing multiple options to be chosen. Closes #9569
This commit is contained in:
parent
ce4cbe2f5e
commit
8e67386628
1 changed files with 3 additions and 0 deletions
|
@ -21,6 +21,9 @@ public final class KillMaimBurn extends CardImpl {
|
|||
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{3}{B}{R}");
|
||||
|
||||
// Choose one or more --
|
||||
this.getSpellAbility().getModes().setMinModes(1);
|
||||
this.getSpellAbility().getModes().setMaxModes(3);
|
||||
|
||||
// * Destroy target artifact.
|
||||
this.getSpellAbility().addEffect(new DestroyTargetEffect());
|
||||
this.getSpellAbility().addTarget(new TargetArtifactPermanent());
|
||||
|
|
Loading…
Reference in a new issue