From 596237bf3935e30a53d0786348f3ed17809bda93 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Thu, 6 Aug 2015 19:58:29 +0200 Subject: [PATCH] * Athreos, God of Passage - Fixed that cards returned to hand with the triggered ability werer alaso schown wrongly in graveyard after the effect resolved. --- Mage.Sets/src/mage/sets/journeyintonyx/AthreosGodOfPassage.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/sets/journeyintonyx/AthreosGodOfPassage.java b/Mage.Sets/src/mage/sets/journeyintonyx/AthreosGodOfPassage.java index 46f26f68d52..788102604eb 100644 --- a/Mage.Sets/src/mage/sets/journeyintonyx/AthreosGodOfPassage.java +++ b/Mage.Sets/src/mage/sets/journeyintonyx/AthreosGodOfPassage.java @@ -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); } } }