mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
Fix SacrificeEffect (notTarget is set to true)
This commit is contained in:
parent
99ef7b7e02
commit
73650bf845
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ public class SacrificeEffect extends OneShotEffect<SacrificeEffect>{
|
|||
int realCount = game.getBattlefield().countAll(filter, player.getId(), game);
|
||||
amount = Math.min(amount, realCount);
|
||||
|
||||
Target target = new TargetControlledPermanent(amount, amount, filter, false);
|
||||
Target target = new TargetControlledPermanent(amount, amount, filter, true);
|
||||
target.setRequired(true);
|
||||
|
||||
//A spell or ability could have removed the only legal target this player
|
||||
|
|
Loading…
Reference in a new issue