From af947b35b3f920e9067180db1d593b6b1b905f5a Mon Sep 17 00:00:00 2001 From: Agetian Date: Sun, 26 Jun 2016 14:15:03 +0000 Subject: [PATCH] - DB TwoPiles now lists the contents of the chosen pile in addition to its number (otherwise it's typically confusing and makes the player need to memorize not only the content of both piles but also remember which pile is the first one and which one is the second). --- .../java/forge/game/ability/effects/TwoPilesEffect.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/forge-game/src/main/java/forge/game/ability/effects/TwoPilesEffect.java b/forge-game/src/main/java/forge/game/ability/effects/TwoPilesEffect.java index d40418f61ce..9c903d80fe3 100644 --- a/forge-game/src/main/java/forge/game/ability/effects/TwoPilesEffect.java +++ b/forge-game/src/main/java/forge/game/ability/effects/TwoPilesEffect.java @@ -102,7 +102,12 @@ public class TwoPilesEffect extends SpellAbilityEffect { CardCollectionView chosenPile = pile1WasChosen ? pile1 : pile2; CardCollectionView unchosenPile = !pile1WasChosen ? pile1 : pile2; - p.getGame().getAction().nofityOfValue(sa, chooser, chooser + " chooses Pile " + (pile1WasChosen ? "1" : "2"), chooser); + String notification = chooser + " chooses Pile " + (pile1WasChosen ? "1" : "2") + ":\n"; + for (Card c : chosenPile) { + notification += c.getName() + "\n"; + } + + p.getGame().getAction().nofityOfValue(sa, chooser, notification, chooser); // take action on the chosen pile if (sa.hasParam("ChosenPile")) {