ChooseCardNameEffect.getStackDescription small fixes

This commit is contained in:
Northmoc
2024-11-23 17:12:02 -05:00
committed by Chris H
parent 4d21db94f9
commit 30e82c6b25

View File

@@ -27,12 +27,8 @@ public class ChooseCardNameEffect extends SpellAbilityEffect {
@Override @Override
protected String getStackDescription(SpellAbility sa) { protected String getStackDescription(SpellAbility sa) {
final StringBuilder sb = new StringBuilder();
sb.append(Lang.joinHomogenous(getTargetPlayers(sa))); return Lang.joinHomogenous(getTargetPlayers(sa)) + " names a card.";
sb.append("names a card.");
return sb.toString();
} }
@Override @Override
@@ -66,7 +62,7 @@ public class ChooseCardNameEffect extends SpellAbilityEffect {
if (!p.isInGame()) { if (!p.isInGame()) {
continue; continue;
} }
String chosen = ""; String chosen;
//This section was used for Momir Avatar, which no longer uses it - commented out 7/28/2021 //This section was used for Momir Avatar, which no longer uses it - commented out 7/28/2021
//if (randomChoice) { //if (randomChoice) {
//String numericAmount = "X"; //String numericAmount = "X";