* 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

@ -1145,8 +1145,14 @@ public abstract class PlayerImpl implements Player, Serializable {
}
//20091005 - 114.2a
ActivationStatus activationStatus = playLandAbility.canActivate(this.playerId, game);
if (!ignoreTiming && !activationStatus.canActivate()) {
return false;
if (ignoreTiming) {
if (!canPlayLand()) {
return false; // ignore timing does not mean that more lands than normal can be played
}
} else {
if (!activationStatus.canActivate()) {
return false;
}
}
//20091005 - 305.1