mirror of
https://github.com/correl/mage.git
synced 2024-12-27 03:00:13 +00:00
fixed bug #3768
This commit is contained in:
parent
255b81f143
commit
514993bd0f
1 changed files with 2 additions and 2 deletions
|
@ -151,7 +151,7 @@ class ShireiShizosCaretakerEffect extends OneShotEffect {
|
||||||
Effect effect = new ShireiShizosCaretakerReturnEffect(shireiId);
|
Effect effect = new ShireiShizosCaretakerReturnEffect(shireiId);
|
||||||
effect.setText("return that card to the battlefield if {this} is still on the battlefield");
|
effect.setText("return that card to the battlefield if {this} is still on the battlefield");
|
||||||
DelayedTriggeredAbility delayedAbility = new AtTheBeginOfNextEndStepDelayedTriggeredAbility(effect);
|
DelayedTriggeredAbility delayedAbility = new AtTheBeginOfNextEndStepDelayedTriggeredAbility(effect);
|
||||||
delayedAbility.getEffects().get(0).setTargetPointer(new FixedTarget(card.getId()));
|
delayedAbility.getEffects().get(0).setTargetPointer(new FixedTarget(card.getId(), card.getZoneChangeCounter(game)));
|
||||||
game.addDelayedTriggeredAbility(delayedAbility, source);
|
game.addDelayedTriggeredAbility(delayedAbility, source);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue