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
|
|
@ -94,12 +94,12 @@ public abstract class MeldCard extends CardImpl {
|
|||
}
|
||||
|
||||
@Override
|
||||
public int getConvertedManaCost() {
|
||||
public int getManaValue() {
|
||||
if (this.isCopy()) {
|
||||
return 0;
|
||||
} else {
|
||||
return (this.topHalfCard != null ? this.topHalfCard.getConvertedManaCost() : 0)
|
||||
+ (this.bottomHalfCard != null ? this.bottomHalfCard.getConvertedManaCost() : 0);
|
||||
return (this.topHalfCard != null ? this.topHalfCard.getManaValue() : 0)
|
||||
+ (this.bottomHalfCard != null ? this.bottomHalfCard.getManaValue() : 0);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue