
Greetings....I have been staring at this sheetworker for so long I am now blind to the error... on('change:skacrobatics change:skacrobaticsxp sheet:opened', function () { getAttrs(['dex','skacrobaticsxp'], function(v) { const dex = v.dex *1||0; const skacrobatics = v.skacrobatics *1||0; const skacrobaticsxp = v.skacrobaticsxp *1||0; const skacrobaticsa = Math.round(dex/5 + 9); const skacrobaticsb = Math.round(skacrobaticsxp/2); const skacrobaticsroll = Math.round(skacrobaticsa + skacrobaticsb); setAttrs({ skacrobatics: skacrobatics skacrobaticsxp: skacrobaticsxp skacrobaticsroll: skacrobaticsroll }); }); }); My output for skacrobaticsroll is giving me a blank value...can anyone see the problem?