From d6ffdddfc6838bdb8cf21f4c712c3059af89b037 Mon Sep 17 00:00:00 2001 From: maustin Date: Sun, 14 Jan 2018 00:51:55 +0000 Subject: [PATCH] Text correction "a creature" -> creature(s) for new WithTotalPower effect --- .../main/java/forge/game/ability/effects/ChooseCardEffect.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forge-game/src/main/java/forge/game/ability/effects/ChooseCardEffect.java b/forge-game/src/main/java/forge/game/ability/effects/ChooseCardEffect.java index c04722a0059..db0f223489f 100644 --- a/forge-game/src/main/java/forge/game/ability/effects/ChooseCardEffect.java +++ b/forge-game/src/main/java/forge/game/ability/effects/ChooseCardEffect.java @@ -98,7 +98,7 @@ public class ChooseCardEffect extends SpellAbilityEffect { int chosenP = 0; while (!creature.isEmpty()) { Card c = p.getController().chooseSingleEntityForEffect(creature, sa, - "Select a creature with power less than or equal to " + Integer.toString(totP - chosenP - negativeNum) + "Select creature(s) with power less than or equal to " + Integer.toString(totP - chosenP - negativeNum) + "\r\n(Selected:" + chosenPool + ")\r\n" + "(Total Power: " + chosenP + ")", chosenP <= totP); if (c == null) { if (p.getController().confirmAction(sa, PlayerActionConfirmMode.OptionalChoose, "Cancel Choose?")) {