Fix Escalate Cost

This commit is contained in:
tool4EvEr
2021-05-05 22:20:57 +02:00
parent 122baba999
commit 1232f1be28

View File

@@ -123,7 +123,7 @@ public class CostAdjustment {
if ("Escalate".equals(amount)) {
SpellAbility sub = sa;
while(sub != null) {
if (!sub.getSVar("CharmOrder").equals("")) {
if (sub.getDirectSVars().containsKey("CharmOrder")) {
count++;
}
sub = sub.getSubAbility();