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

@ -31,7 +31,7 @@ public class SacrificeCostConvertedMana implements DynamicValue {
SacrificeTargetCost sacrificeCost = (SacrificeTargetCost) cost;
int totalCMC = 0;
for(Permanent permanent : sacrificeCost.getPermanents()) {
totalCMC += permanent.getConvertedManaCost();
totalCMC += permanent.getManaValue();
}
return totalCMC;
}
@ -51,6 +51,6 @@ public class SacrificeCostConvertedMana implements DynamicValue {
@Override
public String getMessage() {
return "the sacrificed " + type + "'s converted mana cost";
return "the sacrificed " + type + "'s mana value";
}
}