From 93d17f5f34ba4a85d89e1e8b6119d08f0828d196 Mon Sep 17 00:00:00 2001 From: Evan Kranzler Date: Sat, 11 Jan 2020 10:33:21 -0500 Subject: [PATCH] fixed Chain to Memory boost count --- Mage.Sets/src/mage/cards/c/ChainToMemory.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/c/ChainToMemory.java b/Mage.Sets/src/mage/cards/c/ChainToMemory.java index 51b9815132e..9a58196956a 100644 --- a/Mage.Sets/src/mage/cards/c/ChainToMemory.java +++ b/Mage.Sets/src/mage/cards/c/ChainToMemory.java @@ -18,7 +18,7 @@ public final class ChainToMemory extends CardImpl { super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{U}"); // Target creature gets -4/-0 until end of turn. Scry 2. - this.getSpellAbility().addEffect(new BoostTargetEffect(-2, 0)); + this.getSpellAbility().addEffect(new BoostTargetEffect(-4, 0)); this.getSpellAbility().addEffect(new ScryEffect(2).setText("Scry 2")); this.getSpellAbility().addTarget(new TargetCreaturePermanent()); }