1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-03 01:08:59 -09:00

Fixed Issue 365.

This commit is contained in:
magenoxx 2011-11-06 13:37:10 +03:00
parent 0c4783e2cd
commit 0fc4cc4e28

View file

@ -73,9 +73,9 @@ public class SacrificeEffect extends OneShotEffect<SacrificeEffect>{
@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