diff --git a/module/applications/actor/base-sheet.mjs b/module/applications/actor/base-sheet.mjs index 6fe38a460f..643d3c1fd3 100644 --- a/module/applications/actor/base-sheet.mjs +++ b/module/applications/actor/base-sheet.mjs @@ -149,7 +149,7 @@ export default class ActorSheet5e extends ActorSheet { // Skills for ( const [s, skl] of Object.entries(context.skills) ) { - skl.ability = CONFIG.DND5E.abilityAbbreviations[skl.ability]; + skl.abbreviation = CONFIG.DND5E.abilityAbbreviations[skl.ability]; skl.icon = this._getProficiencyIcon(skl.value); skl.hover = CONFIG.DND5E.proficiencyLevels[skl.value]; skl.label = CONFIG.DND5E.skills[s]?.label; diff --git a/templates/actors/character-sheet.hbs b/templates/actors/character-sheet.hbs index 91d2a35a53..c57fc47a70 100644 --- a/templates/actors/character-sheet.hbs +++ b/templates/actors/character-sheet.hbs @@ -191,7 +191,7 @@ - {{skill.ability}} + {{skill.abbreviation}} {{numberFormat skill.total decimals=0 sign=true}} diff --git a/templates/actors/npc-sheet.hbs b/templates/actors/npc-sheet.hbs index f0fda3f5d2..478a553b08 100644 --- a/templates/actors/npc-sheet.hbs +++ b/templates/actors/npc-sheet.hbs @@ -155,7 +155,7 @@ - {{skill.ability}} + {{skill.abbreviation}} {{numberFormat skill.total decimals=0 sign=true}}