mirror of
https://github.com/magefree/mage.git
synced 2025-12-28 06:22:01 -08:00
[SNC] Implemented Ziatora's Envoy
This commit is contained in:
parent
0e3252d256
commit
cec8c54401
4 changed files with 144 additions and 3 deletions
|
|
@ -1288,8 +1288,10 @@ public abstract class PlayerImpl implements Player, Serializable {
|
|||
//20091005 - 114.2a
|
||||
ActivationStatus activationStatus = playLandAbility.canActivate(this.playerId, game);
|
||||
if (ignoreTiming) {
|
||||
if (!canPlayLand()) {
|
||||
return false; // ignore timing does not mean that more lands than normal can be played
|
||||
if (!canPlayLand() || !isActivePlayer(game)) {
|
||||
// ignore timing does not mean that more lands than normal can be played
|
||||
// it also has to be your turn
|
||||
return false;
|
||||
}
|
||||
} else {
|
||||
if (!activationStatus.canActivate()) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue