* Athreos, God of Passage - Fixed that cards returned to hand with the triggered ability werer alaso schown wrongly in graveyard after the effect resolved.

This commit is contained in:
LevelX2 2015-08-06 19:58:29 +02:00
parent b5f583abb4
commit 596237bf39

View file

@ -138,7 +138,7 @@ class AthreosGodOfPassageReturnEffect extends OneShotEffect {
}
if (opponent == null || !paid) {
if (game.getState().getZone(creature.getId()).equals(Zone.GRAVEYARD)) {
controller.moveCards(creature, null, Zone.HAND, source, game);
controller.moveCards(game.getCard(creatureId), null, Zone.HAND, source, game);
}
}
}