fixed Liliana, Dreadhorde General ultimate forcing controller to choose permanents and not sacrifice them

This commit is contained in:
Evan Kranzler 2019-04-08 18:01:21 -04:00
parent a35a0abe5a
commit 4462979529

View file

@ -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()) {