Fix to Blood Baron of Vizkopa.

This commit is contained in:
LevelX2 2013-04-26 08:13:54 +02:00
parent d49492e8f3
commit f9bff1f062

View file

@ -141,7 +141,7 @@ class BloodBaronOfVizkopaEffect extends ContinuousEffectImpl<BloodBaronOfVizkopa
if (player != null && player.getLife() >= 30) {
for (UUID opponentId :player.getInRange()) {
Player opponent = game.getPlayer(opponentId);
if (opponent != null && opponent.getLife() > 11) {
if (opponent != null && opponent.getLife() < 11) {
return true;
}
}