mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 11:48:02 +00:00
Text correction "a creature" -> creature(s) for new WithTotalPower effect
This commit is contained in:
@@ -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?")) {
|
||||||
|
|||||||
Reference in New Issue
Block a user