diff --git a/Mage/src/mage/abilities/effects/common/SacrificeEffect.java b/Mage/src/mage/abilities/effects/common/SacrificeEffect.java index 3fdc346fd02..2b2f2080a24 100644 --- a/Mage/src/mage/abilities/effects/common/SacrificeEffect.java +++ b/Mage/src/mage/abilities/effects/common/SacrificeEffect.java @@ -73,9 +73,9 @@ public class SacrificeEffect extends OneShotEffect{ @Override public boolean apply(Game game, Ability source) { Player player = game.getPlayer(targetPointer.getFirst(source)); - filter.setTargetController(TargetController.YOU); + //filter.setTargetController(TargetController.YOU); int amount = count.calculate(game, source); - amount = Math.min(amount, game.getBattlefield().countAll(filter, source.getControllerId())); + amount = Math.min(amount, game.getBattlefield().countAll(filter, player.getId())); Target target = new TargetControlledPermanent(amount, amount, filter, false); //A spell or ability could have removed the only legal target this player