mirror of
https://github.com/correl/mage.git
synced 2025-01-12 03:00:13 +00:00
fixed Liliana, Dreadhorde General ultimate forcing controller to choose permanents and not sacrifice them
This commit is contained in:
parent
a35a0abe5a
commit
4462979529
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@ class LilianaDreadhordeGeneralEffect extends OneShotEffect {
|
|||
keepFilter.add(new ControllerPredicate(TargetController.OPPONENT));
|
||||
for (UUID opponentId : game.getState().getPlayersInRange(source.getControllerId(), game)) {
|
||||
Player opponent = game.getPlayer(opponentId);
|
||||
if (opponent == null) {
|
||||
if (opponent == null || !opponent.hasOpponent(source.getControllerId(), game)) {
|
||||
continue;
|
||||
}
|
||||
for (CardType cardType : CardType.values()) {
|
||||
|
|
Loading…
Reference in a new issue