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