One of my testers noticed that when you add a BG skill on the web portal, it defaults to ‘interest’, but when you move the points up and down, interest ceases to be an option.
In BG skills config, you can set:
# Background Skill Ratings
interest_rating: "Interest"
proficiency_rating: "Proficiency"
expertise_rating: "Expertise"
But BG skills seems to be calling an older version of the ratings:
def rating_name
case rating
when 0
return t('fs3skills.everyman_rating')
when 1
return t('fs3skills.fair_rating')
when 2
return t('fs3skills.good_rating')
when 3
return t('fs3skills.exceptional_rating')
end
end
I presume that should be everyman_rating, interest_rating, proficiency_rating, and expertise_rating?