mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 04:38:00 +00:00
Change SimpleString to comma for multiple parts
This commit is contained in:
@@ -684,7 +684,7 @@ public class Cost implements Serializable {
|
|||||||
boolean first = true;
|
boolean first = true;
|
||||||
for (final CostPart part : this.costParts) {
|
for (final CostPart part : this.costParts) {
|
||||||
if (!first) {
|
if (!first) {
|
||||||
cost.append(" and ");
|
cost.append(", ");
|
||||||
}
|
}
|
||||||
cost.append(part.toString());
|
cost.append(part.toString());
|
||||||
first = false;
|
first = false;
|
||||||
|
|||||||
Reference in New Issue
Block a user