From 9b8d7b6be4bb728540c9cc3c2f129f766dd2708d Mon Sep 17 00:00:00 2001 From: Jeff Wadsworth Date: Tue, 13 Sep 2022 10:53:23 -0500 Subject: [PATCH] - Fixed #9485 --- Mage.Sets/src/mage/cards/b/BiolumeEgg.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/b/BiolumeEgg.java b/Mage.Sets/src/mage/cards/b/BiolumeEgg.java index 6c632c70b72..a14343a6f7e 100644 --- a/Mage.Sets/src/mage/cards/b/BiolumeEgg.java +++ b/Mage.Sets/src/mage/cards/b/BiolumeEgg.java @@ -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);