- Fixed targeted triggers not being removed from the stack.

This commit is contained in:
Sloth
2013-06-20 14:29:47 +00:00
parent 77dcb26372
commit ce7a8bb1f1

View File

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