From ce7a8bb1f11b4aa2a0aebcd79885fe653efecbd4 Mon Sep 17 00:00:00 2001 From: Sloth Date: Thu, 20 Jun 2013 14:29:47 +0000 Subject: [PATCH] - Fixed targeted triggers not being removed from the stack. --- .../java/forge/card/spellability/HumanPlaySpellAbility.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/main/java/forge/card/spellability/HumanPlaySpellAbility.java b/src/main/java/forge/card/spellability/HumanPlaySpellAbility.java index ff58593cc7f..6861cb52710 100644 --- a/src/main/java/forge/card/spellability/HumanPlaySpellAbility.java +++ b/src/main/java/forge/card/spellability/HumanPlaySpellAbility.java @@ -92,7 +92,10 @@ public class HumanPlaySpellAbility { } // no worries here. The same thread must resolve, and by this moment ability will have been resolved already - clearTargets(ability); + // Triggers haven't resolved yet ?? + if (!isAlreadyTargeted) { + clearTargets(ability); + } } }