mirror of
https://github.com/magefree/mage.git
synced 2026-01-25 20:59:14 -08:00
* 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:
parent
c08d266fce
commit
e57aee7fcb
3 changed files with 19 additions and 9 deletions
|
|
@ -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());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue