forked from External/mage
revert change that broke tests
This commit is contained in:
parent
9a9a34ee95
commit
e9c6e448c4
1 changed files with 2 additions and 2 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue