* Malakir Bloodwitch - Fixed that it gives life two times instead one.

This commit is contained in:
Oleg Agafonov 2018-01-15 07:22:42 +04:00
parent 98cc704592
commit 525107e212

View file

@ -109,9 +109,9 @@ class MalakirBloodwitchEffect extends OneShotEffect {
if (opponent != null) {
total += opponent.loseLife(amount, game, false);
}
if (total > 0) {
player.gainLife(total, game);
}
}
if (total > 0) {
player.gainLife(total, game);
}
return true;