
I have an attr named "physical_current" that I'm passing to the roll template. The attr is the sum of three other fields with a value="@{onething}+@{anotherthing}+@{yetanotherthing}". I'm passing it to the roll template thusly: "{{skillvalue=[@{physical_current}]}}". In the roll results I'm seeing something like "[42+2+1]" where onething=42, anotherthing = 2, and yetanotherthing = 1. I've tried "{{skillvalue=[parseInt(@{physical_current})]}}" and a few other things, none of which seem to be turning this auto-calculated value into an integer. If this just another case of "don't use auto-calculated attributes?" Or am I missing something?