Fixed Anowon, the Ruin Sage

This commit is contained in:
magenoxx 2011-09-17 00:48:35 +04:00
parent 6316580aa7
commit f5164fa526
2 changed files with 5 additions and 3 deletions

View file

@ -77,7 +77,7 @@ public class SacrificeAllEffect extends OneShotEffect<SacrificeAllEffect> {
for (Player player: game.getPlayers().values()) {
int numTargets = Math.min(amount, game.getBattlefield().countAll(filter, player.getId()));
TargetControlledPermanent target = new TargetControlledPermanent(numTargets, numTargets, filter, false);
if (target.canChoose(source.getControllerId(), game)) {
if (target.canChoose(player.getId(), game)) {
while (!target.isChosen()) {
player.choose(Outcome.Sacrifice, target, game);
}