[LTR] [LTC] Text fixes (#10569)

This commit is contained in:
xenohedron 2023-07-06 00:24:12 -04:00 committed by GitHub
parent 1ccaf06366
commit e50f8b05c1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
55 changed files with 113 additions and 145 deletions

View file

@ -13,7 +13,6 @@ import mage.players.Player;
import mage.util.CardUtil;
import java.util.*;
import java.util.stream.Collectors;
/**
* @author LevelX2
@ -180,7 +179,12 @@ public class AddManaInAnyCombinationEffect extends ManaEffect {
for (ColoredManaSymbol coloredManaSymbol : manaSymbols) {
i++;
if (i > 1) {
sb.append(" and/or ");
if (i == manaSymbols.size()) {
sb.append(" and/or ");
} else {
sb.append(", ");
}
}
sb.append('{').append(coloredManaSymbol.toString()).append('}');
}