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:
parent
0c4783e2cd
commit
0fc4cc4e28
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue