mirror of
https://github.com/correl/mage.git
synced 2024-12-27 03:00:13 +00:00
- Fixed #6137
This commit is contained in:
parent
3ed27b6314
commit
d919696122
1 changed files with 2 additions and 1 deletions
|
@ -119,7 +119,8 @@ class EmryLurkerOfTheLochPlayEffect extends AsThoughEffectImpl {
|
|||
if (targetId != null) {
|
||||
return targetId.equals(objectId)
|
||||
&& source.isControlledBy(affectedControllerId)
|
||||
&& Zone.GRAVEYARD == game.getState().getZone(objectId);
|
||||
&& Zone.GRAVEYARD == game.getState().getZone(objectId)
|
||||
&& !game.getCard(targetId).isLand();
|
||||
} else {
|
||||
// the target card has changed zone meanwhile, so the effect is no longer needed
|
||||
discard();
|
||||
|
|
Loading…
Reference in a new issue