
Having a weird thing where a button in a repeating section can't seem to find certain attributes in the button but I know it can find in other parts of the repeating section. Here's my button: <button type="roll" name="btn_power-attack" value="&{template:roll} {{name=@{character_name}}} {{trait=@{attack_name}}} {{result=[[1d20cs>@{attack_crit} + @{attack_rank} + @{attack_misc}]]}} {{affliction_type=@{afflictions_type}}} {{affliction_check=@{afflictions_check}}} {{affliction1=@{afflictions_1}}} {{affliction2=@{afflictions_2}}} {{affliction3=@{afflictions_3}}}"><input type="number" name="attr_attack_rank" readonly placeholder="0"></button> The button displays in chat like so: So its missing a bunch of attributes and yet on the sheet, inside the same repeating-section it seems to find the attributes just fine. <div class="display_afflictions"> <span class="">Afflictions</span> <span class="redlabel" name="attr_afflictions_type"></span> <span class="redlabel __dc" name="attr_afflictions_check"></span> <div class="afflictions"> <span class="affliction" name="attr_afflictions_1"></span> <span class="affliction" name="attr_afflictions_2"></span> <span class="affliction" name="attr_afflictions_3"></span> </div> </div> Am I just making a dumb mistake somewhere?