* Brilliant Ultimatum - Fixed that it was not checked if the player is still allowed to play a land.

This commit is contained in:
LevelX2 2018-10-25 16:15:24 +02:00
parent 52f0ae8bd5
commit 44d3276046
5 changed files with 47 additions and 40 deletions

View file

@ -1,4 +1,3 @@
package mage.abilities;
import java.util.UUID;
@ -31,7 +30,10 @@ public class PlayLandAbility extends ActivatedAbilityImpl {
return ActivationStatus.getFalse();
}
//20091005 - 114.2a
return new ActivationStatus(game.isActivePlayer(playerId) && game.getPlayer(playerId).canPlayLand() && game.canPlaySorcery(playerId), permittingObject);
return new ActivationStatus(game.isActivePlayer(playerId)
&& game.getPlayer(playerId).canPlayLand()
&& game.canPlaySorcery(playerId),
permittingObject);
}
@Override