Clash - Fixed handling of Titan's Revenge.

This commit is contained in:
LevelX2 2014-08-26 15:29:50 +02:00
parent b7a51adbc3
commit 7c0f93afcd
3 changed files with 40 additions and 26 deletions

View file

@ -199,7 +199,7 @@ public class Spell implements StackObject, Card {
if (!copiedSpell) {
for (Effect effect : ability.getEffects()) {
if (effect instanceof PostResolveEffect) {
if (((PostResolveEffect) effect).isActive()) {
if (((PostResolveEffect) effect).isActive(ability, game)) {
((PostResolveEffect) effect).postResolve(card, ability, controllerId, game);
return result;
}