I use the Havoc sheet based upon this one (if I'm not mistaken). However, the problem exists there, too. I tested it and the problem is in the roll template functions. Since some time before, the command rollGreater and rollLess interpret decimals differently. In other words, -0.5 is now considered above zero . So the functions don't work properly for decimals, even if using them with the NOT prefix. I tested that a lot and found a solution, which requires adaption of all the formulas and the roll template.In essence, I now pass the full difference between the roll and the skill value to the roll template in addition to the degrees of successes/failures. Then I evaluate the full difference and display the DoS/F. These are my fixes in bold . value="@{abilityroll} &{template:dh1ed} {{rollname=^{rollag}}} [[ [[ (@{Ag_test}+@{miscmod}-[[1d100]] )]] /10]] {{roll=$[[1]]}} {{rolldeg=$[[2]]}} {{skill=@{ag}}} {{fatigue=@{fatigue_mod}}} {{encumbrance=@{encumbrance_mod}}} {{target=[[@{Ag_test} + @{miscmod}]]}} {{modifier=@{miscmod}}} {{diceroll=$[[0]]}}"> ROLL is now the difference between skill and roll (full numbers, e.g. -7 or 24), and ROLLDEG is the (original) Degrees of Success/Failure (decimals, -0.7 or 2.4 respectively). Note: Fatigue & Encumbrance are new values for my custom sheet. Misc Mod is fed from a query box on the sheet where you can enter global values or chose to display a selection box when rolling, speeding up rolls for (primarily) NPCs a lot. So ignore them. The template now looks like this (please ignore the custom parts which might differ - you'll get the idea). In essence, you only have to change the roll to rolldeg where the DoS/F are displayed. The rest will work fine. {{#roll}} {{#^rollLess() roll 0}} <!-- Does currently not properly work with decimals. -0.4 is not considered below 0 --> {{#rollGreater() surestrike 0}} <tr> <th colspan="2" class="sheet-special" style="text-align:right" > <span data-i18n="surestrike_rule">(Sure Strike rules)</span> </th> </tr> {{/rollGreater() surestrike 0}} <tr class="sheet-success"> <th colspan="2"> <span data-i18n="success">Success</span> <span data-i18n="with">with</span> {{rolldeg}} <span data-i18n="degrees">degrees</span> </th> </tr>