< button class = "invisible-button skill" type = "roll" value = "&{template:custom} {{title=@{CharName}}} {{skill=Bribery}} {{normal=[[ 1d10 + @{COOL} + @{Bribery} ]]}} {{crit=[[ 10 + 1d10 + @{COOL} + @{Bribery} ]] }} {{fumble=[[ 1 - 1d10 + @{COOL} + @{Bribery}]]}}" name = "roll_Bribery" > Bribery </ button > < rolltemplate class = "sheet-rolltemplate-custom" > < div class = "sheet-container sheet-color-{{color}}" > < div class = "sheet-header" > < div class = "sheet-title" > {{title}} </ div > {{#subtitle}} < div class = "sheet-subtitle" > {{subtitle}} </ div > {{/subtitle}} </ div > < div class = "sheet-content" > {{#rollWasCrit() normal}} < div class = "sheet-desc" > Crit: {{crit}} </ div > {{/rollWasCrit() normal}} {{#rollBetween() normal 2 9}} < div class = "sheet-desc" > {{normal}} </ div > {{/rollBetween() normal 2 9}} {{#rollWasFumble() normal}} < div class = "sheet-desc" > Fumble: {{fumble}} </ div > {{/rollWasFumble() normal}} < div class = "sheet-desc" > xxx </ div > {{#allprops()}} < div > {{key}} </ div >< div > {{value}} </ div > {{/allprops()}} </ div > </ div > </ rolltemplate > Why does {{#rollBetween() normal 2 9}} calculate based on the total value of normal instead of the value of the first inline roll?