forked from External/mage
Fixed stack overflow error. Added missing type conversion.
This commit is contained in:
parent
e52c35fec9
commit
7e2064be8f
1 changed files with 1 additions and 1 deletions
|
|
@ -156,7 +156,7 @@ public class CardUtil {
|
|||
* @param reduceCount
|
||||
*/
|
||||
public static void adjustCost(SpellAbility spellAbility, int reduceCount) {
|
||||
CardUtil.adjustCost(spellAbility, reduceCount);
|
||||
CardUtil.adjustCost((Ability) spellAbility, reduceCount);
|
||||
adjustAlternativeCosts(spellAbility, reduceCount);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue