Implemented Gyrus, Waker of Corpses

This commit is contained in:
Will Hall 2018-07-27 18:33:58 -07:00
parent fe65d595ac
commit 76d0baa792
3 changed files with 131 additions and 1 deletions

View file

@ -29,7 +29,7 @@ public class ManaSpentToCastCount implements DynamicValue {
}
if (spell != null) {
// NOT the cmc of the spell on the stack
return spell.getSpellAbility().getManaCostsToPay().convertedManaCost() + spell.getSpellAbility().getManaCostsToPay().getX();
return spell.getSpellAbility().getManaCostsToPay().convertedManaCost();
}
return 0;
}