mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
Fix Atraxa, Grand Unifier not revealing chosen cards. Closes #9949
This commit is contained in:
parent
419b9774e7
commit
32e2f9aa31
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue