
The new roll query dropdown does not respect paired braces ( { } ) and ends early if they are used in a value. I am trying to use the roll query drop-downs to populate roll templates. If I put the query inside the roll template section, the query works as expected but I have to enter the value multiple times to set several sections of the template. &{template:default} {{name=Test Name }} {{ ?{Resistance?|Fortitude , Fortitude check:= [[1d20 +8 ]]|Reflex , Reflex check:= [[1d20 + 6 ]] |Will , Will check:= [[1d20 +13 ]] } }} {{notes=?{Resistance Note?|Fortitude, Immune to all poisons|Reflex, (None)|Will, +4 vs fey spell-like abilities; +2 vs enchantment spells/effects; immune to sleep effects} }}
If I try to use the query to build the template as such: &{template:default} {{name=Test Name }} ?{Resistance?|Fortitude , {{Fortitude check:= [[1d20 +8 ]] }} {{notes= Immune to all poisons }} |Reflex , {{Reflex check:= [[1d20 + 6 ]] }} |Will , {{Will check:= [[1d20 +13 ]] }} {{notes= +4 vs fey spell-like abilities; +2 vs enchantment spells/effects; immune to sleep effects }} } The query does not function as a drop-down and ends on the first closing brace even though it is paired with an open brace inside the roll query value. The value given in the input box for this example is: Fortitude , {{Fortitude check:= [[1d20 +8 ]] I understand that this might not be a case which was considered in programming the drop-down, but it would be more intuitive if it would parse through the braces and end on the actual closing brace for the query instead of on the first closing brace it finds. Thank you.