* Athreos, God of Passage - Do not return the creature card from other zones than graveyard.

This commit is contained in:
LevelX2 2014-05-05 00:10:53 +02:00
parent f872a44477
commit 0975a70f14

View file

@ -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;