mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 04:52:07 -08:00
* Fixed bug concerning Escalate's mana cost.
This commit is contained in:
parent
41326affb5
commit
b85af92942
1 changed files with 1 additions and 1 deletions
|
|
@ -78,7 +78,7 @@ class EscalateEffect extends CostModificationEffectImpl {
|
|||
public boolean apply(Game game, Ability source, Ability abilityToModify) {
|
||||
int numCosts = abilityToModify.getModes().getSelectedModes().size() - 1;
|
||||
for (int i = 0; i < numCosts; i++) {
|
||||
abilityToModify.addCost(cost);
|
||||
abilityToModify.addCost(cost.copy());
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue