From 9d804174947cf5960242111026be546c17435751 Mon Sep 17 00:00:00 2001 From: "Alex W. Jackson" Date: Mon, 27 Sep 2021 23:02:53 -0400 Subject: [PATCH] Fix Skeletal Scrying effect --- Mage.Sets/src/mage/cards/s/SkeletalScrying.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/s/SkeletalScrying.java b/Mage.Sets/src/mage/cards/s/SkeletalScrying.java index 3c935af9537..fe3181c71b5 100644 --- a/Mage.Sets/src/mage/cards/s/SkeletalScrying.java +++ b/Mage.Sets/src/mage/cards/s/SkeletalScrying.java @@ -6,7 +6,7 @@ import mage.abilities.costs.CostAdjuster; import mage.abilities.costs.common.ExileFromGraveCost; import mage.abilities.dynamicvalue.common.ManacostVariableValue; import mage.abilities.effects.common.DrawCardSourceControllerEffect; -import mage.abilities.effects.common.GainLifeEffect; +import mage.abilities.effects.common.LoseLifeSourceControllerEffect; import mage.abilities.effects.common.InfoEffect; import mage.cards.CardImpl; import mage.cards.CardSetInfo; @@ -41,7 +41,7 @@ public final class SkeletalScrying extends CardImpl { this.getSpellAbility().addEffect(new DrawCardSourceControllerEffect( ManacostVariableValue.REGULAR ).setText("you draw X cards")); - this.getSpellAbility().addEffect(new GainLifeEffect( + this.getSpellAbility().addEffect(new LoseLifeSourceControllerEffect( ManacostVariableValue.REGULAR ).concatBy("and")); }