mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 12:18:00 +00:00
Fix up AB$Destroy stack description a bit.
This commit is contained in:
@@ -323,17 +323,19 @@ public class AbilityFactory_Destroy {
|
|||||||
sb.append(name).append(" - Destroy ");
|
sb.append(name).append(" - Destroy ");
|
||||||
|
|
||||||
for(Card c : tgtCards)
|
for(Card c : tgtCards)
|
||||||
sb.append(c.getName()).append(" ");
|
sb.append(c.getName()).append(", ");
|
||||||
|
|
||||||
if (noRegen) {
|
if (noRegen) {
|
||||||
if (sb.toString().endsWith(" "))
|
if (sb.toString().endsWith(", ")) {
|
||||||
sb.deleteCharAt(sb.toString().length() - 1);
|
sb.deleteCharAt(sb.toString().length() - 1);
|
||||||
|
sb.deleteCharAt(sb.toString().length() - 1);
|
||||||
|
}
|
||||||
sb.append(". ");
|
sb.append(". ");
|
||||||
if (tgtCards.size() == 1)
|
if (tgtCards.size() == 1)
|
||||||
sb.append("It");
|
sb.append("It");
|
||||||
else
|
else
|
||||||
sb.append("They");
|
sb.append("They");
|
||||||
sb.append(" can't be regenerated");
|
sb.append(" can't be regenerated. ");
|
||||||
}
|
}
|
||||||
|
|
||||||
Ability_Sub abSub = sa.getSubAbility();
|
Ability_Sub abSub = sa.getSubAbility();
|
||||||
|
|||||||
Reference in New Issue
Block a user