Merge pull request #3511 from drmDev/master

Shattering Spree fix closes #3509
This commit is contained in:
Derek M 2017-06-18 13:12:55 -04:00 committed by GitHub
commit 9904321bf6

View file

@ -47,7 +47,7 @@ public class ShatteringSpree extends CardImpl {
// Replicate {R}
this.addAbility(new ReplicateAbility(this, "{R}"));
// Destroy target artifact.
this.getSpellAbility().addEffect(new DestroyTargetEffect(true));
this.getSpellAbility().addEffect(new DestroyTargetEffect(false));
this.getSpellAbility().addTarget(new TargetArtifactPermanent());
}