forked from External/mage
- Fixed #9485
This commit is contained in:
parent
9b70a0ee6f
commit
9b8d7b6be4
1 changed files with 2 additions and 2 deletions
|
|
@ -46,7 +46,7 @@ public final class BiolumeEgg extends CardImpl {
|
|||
this.addAbility(new TransformAbility());
|
||||
this.addAbility(new SacrificeSourceTriggeredAbility(new CreateDelayedTriggeredAbilityEffect(
|
||||
new AtTheBeginOfNextEndStepDelayedTriggeredAbility(new BiolumeEggEffect()), true
|
||||
).setText("return it to the battlefield transformed under its owner's control at the beginning of the next end step"), false));
|
||||
).setText("return it to the battlefield transformed under its owner's control at the beginning of the next end step"), false, true));
|
||||
}
|
||||
|
||||
private BiolumeEgg(final BiolumeEgg card) {
|
||||
|
|
@ -81,7 +81,7 @@ class BiolumeEggEffect extends OneShotEffect {
|
|||
if (controller == null) {
|
||||
return false;
|
||||
}
|
||||
Card card = game.getCard(getTargetPointer().getFirst(game, source));
|
||||
Card card = game.getCard(targetPointer.getFirst(game, source));
|
||||
if (card != null) {
|
||||
game.getState().setValue(TransformAbility.VALUE_KEY_ENTER_TRANSFORMED + card.getId(), Boolean.TRUE);
|
||||
controller.moveCards(card, Zone.BATTLEFIELD, source, game, false, false, true, null);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue