From 69c15762a518a6cfb44b17809439c91d88b08fb8 Mon Sep 17 00:00:00 2001 From: Evan Kranzler Date: Sun, 18 Sep 2022 11:52:29 -0400 Subject: [PATCH] Fact or Fiction effects reverted to asking for hand pile rather than graveyard pile (closes #9531) --- .../effects/common/RevealAndSeparatePilesEffect.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Mage/src/main/java/mage/abilities/effects/common/RevealAndSeparatePilesEffect.java b/Mage/src/main/java/mage/abilities/effects/common/RevealAndSeparatePilesEffect.java index f3cce3d00e..15237187d5 100644 --- a/Mage/src/main/java/mage/abilities/effects/common/RevealAndSeparatePilesEffect.java +++ b/Mage/src/main/java/mage/abilities/effects/common/RevealAndSeparatePilesEffect.java @@ -117,10 +117,10 @@ public class RevealAndSeparatePilesEffect extends OneShotEffect { pile2.addAll(cards.getCards(game)); Player choosingPlayer = this.getExecutingPlayer(controller, game, source, playerWhoChooses, "choose the piles"); - boolean choice = choosingPlayer.choosePile(outcome, "Choose a pile to put into " + targetZone + ".", pile1, pile2, game); + boolean choice = choosingPlayer.choosePile(outcome, "Choose a pile to put into hand.", pile1, pile2, game); - Zone pile1Zone = choice ? targetZone : Zone.HAND; - Zone pile2Zone = choice ? Zone.HAND : targetZone; + Zone pile1Zone = choice ? Zone.HAND : targetZone; + Zone pile2Zone = choice ? targetZone : Zone.HAND; game.informPlayers("Pile 1, going to " + pile1Zone + ": " + (pile1.isEmpty() ? " (none)" : pile1.stream().map(MageObject::getName).collect(Collectors.joining(", ")))); cards.clear();