* Kaalia, Zenith Seeker - Added the missing revealing of the cards moved to hand.

This commit is contained in:
LevelX2 2019-12-23 17:39:12 +01:00
parent ee0b7a53a9
commit 3bdd881e3a

View file

@ -1,5 +1,6 @@
package mage.cards.k; package mage.cards.k;
import java.util.UUID;
import mage.MageInt; import mage.MageInt;
import mage.abilities.Ability; import mage.abilities.Ability;
import mage.abilities.common.EntersBattlefieldTriggeredAbility; import mage.abilities.common.EntersBattlefieldTriggeredAbility;
@ -18,8 +19,6 @@ import mage.players.Player;
import mage.target.TargetCard; import mage.target.TargetCard;
import mage.target.common.TargetCardInLibrary; import mage.target.common.TargetCardInLibrary;
import java.util.UUID;
/** /**
* @author TheElk801 * @author TheElk801
*/ */
@ -75,10 +74,10 @@ class KaaliaZenithSeekerEffect extends OneShotEffect {
KaaliaZenithSeekerEffect() { KaaliaZenithSeekerEffect() {
super(Outcome.Benefit); super(Outcome.Benefit);
staticText = "look at the top six cards of your library. " + staticText = "look at the top six cards of your library. "
"You may reveal an Angel card, a Demon card, and/or a Dragon card " + + "You may reveal an Angel card, a Demon card, and/or a Dragon card "
"from among them and put them into your hand. " + + "from among them and put them into your hand. "
"Put the rest on the bottom of your library in a random order."; + "Put the rest on the bottom of your library in a random order.";
} }
private KaaliaZenithSeekerEffect(final KaaliaZenithSeekerEffect effect) { private KaaliaZenithSeekerEffect(final KaaliaZenithSeekerEffect effect) {
@ -105,6 +104,7 @@ class KaaliaZenithSeekerEffect extends OneShotEffect {
} }
} }
cards.removeAll(toHand); cards.removeAll(toHand);
player.revealCards(source, toHand, game);
player.moveCards(toHand, Zone.HAND, source, game); player.moveCards(toHand, Zone.HAND, source, game);
player.putCardsOnBottomOfLibrary(cards, game, source, false); player.putCardsOnBottomOfLibrary(cards, game, source, false);
return true; return true;