
So I have three drop down selections that give bonuses/penalties to fatigue. These three attributes are contained inside a drop down. There is no reference to these selects anywhere else in the character sheet. Previously I had the issue where if there were two options with the same value it would revert to the value higher on the select, that is why some values have 0+0. However this issue is that if for example if you choose "Small or Medium" under fatigue_shield, then it will add 1 to the fatigue, just like its supposed to. Then if you re-open the sheet, it will revert back to "None", HOWEVER, fatigue hasn't changed its value. <div class="sheet-col-3-8">Shield</div> <div class="sheet-col-3-8"> <select name="attr_fatigue_shield"> <option value="0">None</option> <option value="0+0">Buckler</option> <option value="1">Small or Medium </option> <option value="2">Large</option> <option value="3">Body</option> </select> </div> <div class="sheet-col-3-8">Armor</div> <div class="sheet-col-3-8"> <select name="attr_fatigue_armor"> <option value="0">None</option> <option value="0+0">Light</option> <option value="1">Medium </option> <option value="2">Heavy</option> </select> </div> <div class="sheet-col-3-8">Weight</div> <div class="sheet-col-3-8"> <select name="attr_fatigue_weight"> <option value="0">Healthy</option> <option value="1">Overweight</option> <option value="3">Obese</option> </select> </div>