revert change that broke tests

This commit is contained in:
xenohedron 2024-09-02 21:02:26 -04:00
parent 9a9a34ee95
commit e9c6e448c4

View file

@ -671,12 +671,12 @@ public class Mana implements Comparable<Mana>, Serializable, Copyable<Mana> {
}
// normal mana
if (colorless < 6) {
if (colorless < 20) {
for (int i = 0; i < colorless; i++) {
sbMana.append("{C}");
}
} else {
sbMana.append(CardUtil.numberToText(colorless)).append(" {C}");
sbMana.append(colorless).append("{C}");
}
String colorsInOrder = getColorsInOrder();