This commit is contained in:
jeffwadsworth 2019-12-04 16:20:15 -06:00
parent c7acebb47c
commit 2e59a45895

View file

@ -15,7 +15,6 @@ import mage.players.Player;
import mage.target.TargetPlayer;
import java.util.UUID;
import java.util.stream.Collectors;
/**
* @author TheElk801
@ -52,7 +51,7 @@ class LeadershipVacuumEffect extends OneShotEffect {
}
LeadershipVacuumEffect() {
super(Outcome.Benefit);
super(Outcome.Detriment);
staticText = "Target player returns each commander they control from the battlefield to the command zone.";
}
@ -76,4 +75,4 @@ class LeadershipVacuumEffect extends OneShotEffect {
.map(commander -> commander.moveToZone(Zone.COMMAND, source.getId(), game, true))
.reduce(true, Boolean::logicalAnd);
}
}
}