replaced all instances of converted mana cost with mana value

This commit is contained in:
Evan Kranzler 2021-04-17 17:02:27 -04:00
parent cb0df438dd
commit a61d5543fa
610 changed files with 1781 additions and 1796 deletions

View file

@ -238,7 +238,7 @@ public final class DeckBuilder {
}
private int getManaCostScore(Card card, List<ColoredManaSymbol> allowedColors) {
int converted = card.getConvertedManaCost();
int converted = card.getManaValue();
final Map<String, Integer> singleCount = new HashMap<>();
int maxSingleCount = 0;
int multicolor = 0;
@ -276,7 +276,7 @@ public final class DeckBuilder {
}
public int getConvertedCost() {
return this.card.getConvertedManaCost();
return this.card.getManaValue();
}
public Card getCard() {