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 "Fatigue Adjust" field appears to (when given a percentage) actually add to the total Fatigue Factor, not subtract. I believe the error is here:
var m = 1.0 + parseValue(v.fatigue_adjust) *1.0 / (( parseValue(v.fatigue_adjust) > 1) ? 100.0 : 1.0);
Taking the "1.0 + " part out should result in an input of 50%, say, multiplying the final factor by .5 (right now it is essentially multiplying by 1.5, or adjusting to 150%).
The text was updated successfully, but these errors were encountered:
The "Fatigue Adjust" field appears to (when given a percentage) actually add to the total Fatigue Factor, not subtract. I believe the error is here:
var m = 1.0 + parseValue(v.fatigue_adjust) *1.0 / (( parseValue(v.fatigue_adjust) > 1) ? 100.0 : 1.0);
Taking the "1.0 + " part out should result in an input of 50%, say, multiplying the final factor by .5 (right now it is essentially multiplying by 1.5, or adjusting to 150%).
The text was updated successfully, but these errors were encountered: