mirror of
https://github.com/correl/mage.git
synced 2024-12-27 20:06:31 +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) {
|
if (targetId != null) {
|
||||||
return targetId.equals(objectId)
|
return targetId.equals(objectId)
|
||||||
&& source.isControlledBy(affectedControllerId)
|
&& source.isControlledBy(affectedControllerId)
|
||||||
&& Zone.GRAVEYARD == game.getState().getZone(objectId);
|
&& Zone.GRAVEYARD == game.getState().getZone(objectId)
|
||||||
|
&& !game.getCard(targetId).isLand();
|
||||||
} else {
|
} else {
|
||||||
// the target card has changed zone meanwhile, so the effect is no longer needed
|
// the target card has changed zone meanwhile, so the effect is no longer needed
|
||||||
discard();
|
discard();
|
||||||
|
|
Loading…
Reference in a new issue