diff --git a/Mage.Server.Plugins/Mage.Player.Human/src/mage/player/human/HumanPlayer.java b/Mage.Server.Plugins/Mage.Player.Human/src/mage/player/human/HumanPlayer.java index 7de3f097d1..161785ce21 100644 --- a/Mage.Server.Plugins/Mage.Player.Human/src/mage/player/human/HumanPlayer.java +++ b/Mage.Server.Plugins/Mage.Player.Human/src/mage/player/human/HumanPlayer.java @@ -47,6 +47,7 @@ import mage.abilities.SpellAbility; import mage.abilities.TriggeredAbility; import mage.abilities.costs.Cost; import mage.abilities.costs.VariableCost; +import mage.abilities.costs.common.PayLifeCost; import mage.abilities.costs.common.SacrificeSourceCost; import mage.abilities.costs.common.TapSourceCost; import mage.abilities.costs.mana.ManaCost; @@ -864,7 +865,7 @@ public class HumanPlayer extends PlayerImpl { return true; } for(Cost cost : ability.getCosts() ) { - if (!(cost instanceof TapSourceCost)) { + if (!(cost instanceof TapSourceCost) && !(cost instanceof PayLifeCost)) { // if cost exists that have to be paid, pick ability dialog can be suppressed return true; }