mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 12:18:00 +00:00
ChooseCardNameEffect.getStackDescription small fixes
This commit is contained in:
@@ -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";
|
||||||
|
|||||||
Reference in New Issue
Block a user