mirror of
https://github.com/magefree/mage.git
synced 2026-01-25 20:59:14 -08:00
* Malakir Bloodwitch - Fixed that it gives life two times instead one.
This commit is contained in:
parent
98cc704592
commit
525107e212
1 changed files with 3 additions and 3 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue