* Necropotence - Fixed that card name was shown as target for face down cards on stack or if player selects order of triggered effects.

This commit is contained in:
LevelX2 2014-06-20 01:04:28 +02:00
parent c08d266fce
commit e57aee7fcb
3 changed files with 19 additions and 9 deletions

View file

@ -139,6 +139,7 @@ class NecropotenceEffect extends OneShotEffect {
card.setFaceDown(true);
if (controller.moveCardToExileWithInfo(card, null, "", source.getSourceId(), game, Zone.LIBRARY)) {
Effect returnToHandeffect = new ReturnToHandTargetEffect();
returnToHandeffect.setText("put that face down card into your hand");
returnToHandeffect.setTargetPointer(new FixedTarget(card.getId()));
DelayedTriggeredAbility delayedAbility = new AtEndOfTurnDelayedTriggeredAbility(returnToHandeffect, TargetController.YOU);
delayedAbility.setSourceId(source.getSourceId());