You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The initiative calculation for the HM4e sheet breaks if a negative reaction modifier is used (Dexterity 8 and below) - it ends up creating a "two minus symbols next to each other" situation. Wrapping the call to the modifier in parentheses ( example:
-(@{Balfred of Shirl Tet|dex_reaction_adjust})[Dex] ) should be enough to resolve the issue.
This fails verification (where dex_reaction_adjust is any negative value):
/roll d10 + 0[Speed] -@{Balfred of Shirl Tet|dex_reaction_adjust}[Dex] + 0[Wpn Init] - (@{Balfred of Shirl Tet|honor_bonus}[Honor])
This will pass:
/roll d10 + 0[Speed] -(@{Balfred of Shirl Tet|dex_reaction_adjust})[Dex] + 0[Wpn Init] - (@{Balfred of Shirl Tet|honor_bonus}[Honor])
The text was updated successfully, but these errors were encountered:
The initiative calculation for the HM4e sheet breaks if a negative reaction modifier is used (Dexterity 8 and below) - it ends up creating a "two minus symbols next to each other" situation. Wrapping the call to the modifier in parentheses ( example:
-(@{Balfred of Shirl Tet|dex_reaction_adjust})[Dex] ) should be enough to resolve the issue.
This fails verification (where dex_reaction_adjust is any negative value):
/roll d10 + 0[Speed] -@{Balfred of Shirl Tet|dex_reaction_adjust}[Dex] + 0[Wpn Init] - (@{Balfred of Shirl Tet|honor_bonus}[Honor])
This will pass:
/roll d10 + 0[Speed] -(@{Balfred of Shirl Tet|dex_reaction_adjust})[Dex] + 0[Wpn Init] - (@{Balfred of Shirl Tet|honor_bonus}[Honor])
The text was updated successfully, but these errors were encountered: