* Test of Faith, Candles Glow - Fixed that damage event was replaced and so only one prevent effect was applied.

This commit is contained in:
LevelX2 2013-07-20 22:18:01 +02:00
parent ac23750310
commit 8435c20b93
2 changed files with 0 additions and 2 deletions

View file

@ -122,7 +122,6 @@ class CandlesGlowPreventDamageTargetEffect extends PreventionEffectImpl<CandlesG
game.informPlayers(new StringBuilder("Candles' Glow: ").append(controller.getName()).append(" gained ").append(prevented).append("life").toString());
}
}
return true;
}
return false;
}

View file

@ -120,7 +120,6 @@ class TestOfFaithPreventDamageTargetEffect extends PreventionEffectImpl<TestOfFa
game.informPlayers("Test of Faith: Adding " + prevented + " +1/+1 counters to " + targetPermanent.getName());
}
}
return true;
}
return false;
}