forked from External/mage
* Morph - Creatures cast with morph have now a converted mana cost of 0 on the stack.
This commit is contained in:
parent
7dbf265fd5
commit
4670fa377a
2 changed files with 7 additions and 4 deletions
|
|
@ -611,7 +611,10 @@ public class Spell implements StackObject, Card {
|
|||
*/
|
||||
@Override
|
||||
public int getConvertedManaCost() {
|
||||
int cmc = 0;
|
||||
int cmc = 0;
|
||||
if (this.isMorphCard() && this.isFaceDown()) {
|
||||
return 0;
|
||||
}
|
||||
for (Ability spellAbility: spellAbilities) {
|
||||
int xMultiplier = 0;
|
||||
for (String symbolString :spellAbility.getManaCosts().getSymbols()) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue