From f6b75537f61b018e6d7d745fec227775294c3dfd Mon Sep 17 00:00:00 2001 From: North Date: Thu, 6 Oct 2011 20:08:55 +0300 Subject: [PATCH] reverted change to SacrificeTargetCost --- Mage/src/mage/abilities/costs/common/SacrificeTargetCost.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage/src/mage/abilities/costs/common/SacrificeTargetCost.java b/Mage/src/mage/abilities/costs/common/SacrificeTargetCost.java index e87f79bcd4..657057049a 100644 --- a/Mage/src/mage/abilities/costs/common/SacrificeTargetCost.java +++ b/Mage/src/mage/abilities/costs/common/SacrificeTargetCost.java @@ -60,7 +60,7 @@ public class SacrificeTargetCost extends CostImpl { @Override public boolean pay(Ability ability, Game game, UUID sourceId, UUID controllerId, boolean noMana) { - if (targets.chooseTargets(Outcome.Sacrifice, controllerId, ability, game)) { + if (targets.choose(Outcome.Sacrifice, controllerId, game)) { for (UUID targetId: targets.get(0).getTargets()) { Permanent permanent = game.getPermanent(targetId); if (permanent == null)