mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
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…
Reference in a new issue