Text correction "a creature" -> creature(s) for new WithTotalPower effect

This commit is contained in:
maustin
2018-01-14 00:51:55 +00:00
parent 7663df024c
commit d6ffdddfc6

View File

@@ -98,7 +98,7 @@ public class ChooseCardEffect extends SpellAbilityEffect {
int chosenP = 0; int chosenP = 0;
while (!creature.isEmpty()) { while (!creature.isEmpty()) {
Card c = p.getController().chooseSingleEntityForEffect(creature, sa, 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); + "\r\n(Selected:" + chosenPool + ")\r\n" + "(Total Power: " + chosenP + ")", chosenP <= totP);
if (c == null) { if (c == null) {
if (p.getController().confirmAction(sa, PlayerActionConfirmMode.OptionalChoose, "Cancel Choose?")) { if (p.getController().confirmAction(sa, PlayerActionConfirmMode.OptionalChoose, "Cancel Choose?")) {