From 525107e2129f337c01dfe00211f800ee53d41702 Mon Sep 17 00:00:00 2001 From: Oleg Agafonov Date: Mon, 15 Jan 2018 07:22:42 +0400 Subject: [PATCH] * Malakir Bloodwitch - Fixed that it gives life two times instead one. --- Mage.Sets/src/mage/cards/m/MalakirBloodwitch.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Mage.Sets/src/mage/cards/m/MalakirBloodwitch.java b/Mage.Sets/src/mage/cards/m/MalakirBloodwitch.java index 93279a028ab..fb7f9ecdd68 100644 --- a/Mage.Sets/src/mage/cards/m/MalakirBloodwitch.java +++ b/Mage.Sets/src/mage/cards/m/MalakirBloodwitch.java @@ -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;