mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 20:41:58 -08:00
Merge branch 'staging'
This commit is contained in:
commit
95d5bd852e
2 changed files with 2 additions and 5 deletions
|
|
@ -56,7 +56,7 @@ public class PlayLandAbility extends ActivatedAbilityImpl {
|
|||
return false;
|
||||
}
|
||||
//20091005 - 114.2a
|
||||
return game.getActivePlayerId().equals(playerId) && game.getPlayer(playerId).canPlayLand();
|
||||
return game.getActivePlayerId().equals(playerId) && game.getPlayer(playerId).canPlayLand() && game.canPlaySorcery(playerId);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
|
|
@ -1064,10 +1064,7 @@ public abstract class PlayerImpl implements Player, Serializable {
|
|||
return false;
|
||||
}
|
||||
//20091005 - 114.2a
|
||||
if (!playLandAbility.canActivate(this.playerId, game)) {
|
||||
return false;
|
||||
}
|
||||
if (!ignoreTiming && !game.canPlaySorcery(playerId)) {
|
||||
if (!ignoreTiming && !playLandAbility.canActivate(this.playerId, game)) {
|
||||
return false;
|
||||
}
|
||||
//20091005 - 305.1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue