mirror of
https://github.com/correl/mage.git
synced 2024-12-27 20:06:31 +00:00
Fix to Blood Baron of Vizkopa.
This commit is contained in:
parent
d49492e8f3
commit
f9bff1f062
1 changed files with 1 additions and 1 deletions
|
@ -141,7 +141,7 @@ class BloodBaronOfVizkopaEffect extends ContinuousEffectImpl<BloodBaronOfVizkopa
|
||||||
if (player != null && player.getLife() >= 30) {
|
if (player != null && player.getLife() >= 30) {
|
||||||
for (UUID opponentId :player.getInRange()) {
|
for (UUID opponentId :player.getInRange()) {
|
||||||
Player opponent = game.getPlayer(opponentId);
|
Player opponent = game.getPlayer(opponentId);
|
||||||
if (opponent != null && opponent.getLife() > 11) {
|
if (opponent != null && opponent.getLife() < 11) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue