From efad55bac3e67ea1a4ebf3dab894c89c83d0240a Mon Sep 17 00:00:00 2001 From: xenohedron Date: Thu, 20 Apr 2023 18:26:12 -0400 Subject: [PATCH] Fix spectacle ability to include the card effect (#10164) --- Mage.Sets/src/mage/cards/b/BodyCount.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Mage.Sets/src/mage/cards/b/BodyCount.java b/Mage.Sets/src/mage/cards/b/BodyCount.java index c095dce256..604c95394a 100644 --- a/Mage.Sets/src/mage/cards/b/BodyCount.java +++ b/Mage.Sets/src/mage/cards/b/BodyCount.java @@ -28,12 +28,12 @@ public final class BodyCount extends CardImpl { public BodyCount(UUID ownerId, CardSetInfo setInfo) { super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{2}{B}"); - // Spectacle {B} - this.addAbility(new SpectacleAbility(this, new ManaCostsImpl<>("{B}"))); - // Draw a card for each creature that died under your control this turn. this.getSpellAbility().addEffect(new DrawCardSourceControllerEffect(BodyCountValue.instance)); this.getSpellAbility().addHint(hint); + + // Spectacle {B} + this.addAbility(new SpectacleAbility(this, new ManaCostsImpl<>("{B}"))); } private BodyCount(final BodyCount card) {