[40K] Fix Kill! Maim! Burn! not allowing multiple options to be chosen. Closes #9569

This commit is contained in:
Alex Vasile 2022-09-24 21:49:39 -04:00
parent ce4cbe2f5e
commit 8e67386628

View file

@ -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());