Working on a class ability that upgrades a racial spell-like ability to At-Will from 1/day I've set this up:
But it's not changing to at-will when the level is added. Anyone have any ideas?
Code:
~ If our Charisma is < 11, we're disabled
if (#attrvalue[aCHA] < 11) then
perform assign[Helper.SpcDisable]
else
perform hero.findchild[BaseSpell,"Helper.SpellLike & Target.spDeteMag0 & Custom.FaenSpell"].tagreplace[Usage.?,Usage.AtWill]
endif
But it's not changing to at-will when the level is added. Anyone have any ideas?