forked from External/mage
* Athreos, God of Passage - Do not return the creature card from other zones than graveyard.
This commit is contained in:
parent
f872a44477
commit
0975a70f14
1 changed files with 3 additions and 1 deletions
|
|
@ -137,7 +137,9 @@ class AthreosGodOfPassageReturnEffect extends OneShotEffect<AthreosGodOfPassageR
|
|||
}
|
||||
}
|
||||
if (opponent == null || !paid) {
|
||||
controller.moveCardToHandWithInfo(creature, source.getSourceId(), game, null);
|
||||
if (game.getState().getZone(creature.getId()).equals(Zone.GRAVEYARD)) {
|
||||
controller.moveCardToHandWithInfo(creature, source.getSourceId(), game, Zone.GRAVEYARD);
|
||||
}
|
||||
}
|
||||
}
|
||||
return true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue