forked from External/mage
Move canPlaySorcery() to ActivatedAbility.canActivate().
This commit is contained in:
parent
88d17d7ed9
commit
66040f0c1f
2 changed files with 3 additions and 6 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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue