mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
- Fixed #6068
This commit is contained in:
parent
c7acebb47c
commit
2e59a45895
1 changed files with 2 additions and 3 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue