From 879e41ebb4cbd4a0af81dea64124e810e782f596 Mon Sep 17 00:00:00 2001 From: Oleg Agafonov Date: Sat, 4 Jan 2020 19:45:46 +0400 Subject: [PATCH] fixed Haktos the Unscarred (duration) --- Mage.Sets/src/mage/cards/h/HaktosTheUnscarred.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/h/HaktosTheUnscarred.java b/Mage.Sets/src/mage/cards/h/HaktosTheUnscarred.java index 38f703c9625..51a0cbe368f 100644 --- a/Mage.Sets/src/mage/cards/h/HaktosTheUnscarred.java +++ b/Mage.Sets/src/mage/cards/h/HaktosTheUnscarred.java @@ -53,7 +53,7 @@ public final class HaktosTheUnscarred extends CardImpl { Ability ability = new ProtectionAbility(filter); ability.setRuleVisible(false); this.addAbility(new SimpleStaticAbility( - new GainAbilitySourceEffect(ability, Duration.EndOfTurn) + new GainAbilitySourceEffect(ability, Duration.WhileOnBattlefield) .setText("{this} has protection from each converted mana cost other than the chosen number") )); }