Fix Atraxa, Grand Unifier not revealing chosen cards. Closes #9949

This commit is contained in:
PurpleCrowbar 2023-02-06 14:53:10 +00:00
parent 419b9774e7
commit 32e2f9aa31

View file

@ -15,7 +15,6 @@ import mage.abilities.keyword.VigilanceAbility;
import mage.abilities.keyword.DeathtouchAbility;
import mage.abilities.keyword.LifelinkAbility;
import mage.filter.FilterCard;
import mage.filter.predicate.Predicates;
import mage.game.Game;
import mage.players.Player;
import mage.target.TargetCard;
@ -90,6 +89,7 @@ class AtraxaGrandUnifierEffect extends OneShotEffect {
TargetCard target = new AtraxaGrandUnifierTarget();
player.choose(outcome, cards, target, game);
Cards toHand = new CardsImpl(target.getTargets());
player.revealCards(source, toHand, game);
player.moveCards(toHand, Zone.HAND, source, game);
cards.retainZone(Zone.LIBRARY, game);
player.putCardsOnBottomOfLibrary(cards, game, source, false);