forked from External/mage
replaced all instances of converted mana cost with mana value
This commit is contained in:
parent
cb0df438dd
commit
a61d5543fa
610 changed files with 1781 additions and 1796 deletions
|
|
@ -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() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue