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
|
|
@ -9,11 +9,11 @@ public class CardViewCostComparator implements CardViewComparator {
|
|||
|
||||
@Override
|
||||
public int compare(CardView o1, CardView o2) {
|
||||
return Integer.compare(o1.getConvertedManaCost(), o2.getConvertedManaCost());
|
||||
return Integer.compare(o1.getManaValue(), o2.getManaValue());
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getCategoryName(CardView sample) {
|
||||
return "CMC: " + sample.getConvertedManaCost();
|
||||
return "CMC: " + sample.getManaValue();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue