From 4456d0ff79f8bb0502942fb35855e600cac2f388 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Mon, 15 Jul 2013 20:37:42 +0200 Subject: [PATCH] * Pact of Negation - Fixed that the cost haven't to be paid at the beginning of your next turn. --- Mage.Sets/src/mage/sets/futuresight/PactOfNegation.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/sets/futuresight/PactOfNegation.java b/Mage.Sets/src/mage/sets/futuresight/PactOfNegation.java index b2f731b5467..b4e69d3c000 100644 --- a/Mage.Sets/src/mage/sets/futuresight/PactOfNegation.java +++ b/Mage.Sets/src/mage/sets/futuresight/PactOfNegation.java @@ -53,7 +53,7 @@ public class PactOfNegation extends CardImpl { this.getSpellAbility().addTarget(new TargetSpell()); this.getSpellAbility().addEffect(new CounterTargetEffect()); // At the beginning of your next upkeep, pay {3}{U}{U}. If you don't, you lose the game. - this.getSpellAbility().addEffect(new CreateDelayedTriggeredAbilityEffect(new PactDelayedTriggeredAbility(new ManaCostsImpl("{3}{U}{U}")))); + this.getSpellAbility().addEffect(new CreateDelayedTriggeredAbilityEffect(new PactDelayedTriggeredAbility(new ManaCostsImpl("{3}{U}{U}")), false)); } public PactOfNegation(final PactOfNegation card) {