diff --git a/src/templates/parts/sheet-sidebar.hbs b/src/templates/parts/sheet-sidebar.hbs
index 22c43dc..8029afa 100644
--- a/src/templates/parts/sheet-sidebar.hbs
+++ b/src/templates/parts/sheet-sidebar.hbs
@@ -2,8 +2,7 @@
{{ localize "DND5E.Proficiency" }}
-
{{#if systemFeatures.profLabel}}{{labels.proficiency}}{{else}}{{numberFormat system.attributes.prof decimals=0
- sign=true}}{{/if}}
+
{{labels.proficiency}}
@@ -18,35 +17,31 @@
{{!-- Skills --}}
- {{#each system.skills as |skill s|}}
- -
+ {{#each config.skills as |obj s|}}
+ {{#with (lookup ../skills s) as |skill|}}
+
-
+
{{{skill.icon}}}
+
{{skill.ability}}
+
{{skill.label}}
- {{#if @root/systemFeatures.skillConfig}}
{{/if}}
+
+
{{numberFormat skill.total decimals=0 sign=true}}
+
+
+ ({{skill.passive}})
+
+ {{/with}}
{{/each}}
- {{#each settings.compact-beyond-5e-sheet.passiveDisplay as |bool s|}}
- {{#if bool}}
- {{#with (getProperty ../system.skills s)}}
-
-
{{ localize "DND5E.Passive" }} {{label}}
-
- {{numberFormat passive decimals=0 sign=false}}
-
-
- {{/with}}
- {{/if}}
- {{/each}}
-
- {{> (cb5es-path "templates/parts/actor-traits.hbs")}}
+ {{> (concat moduleFilePath "templates/parts/actor-traits.hbs")}}
-
\ No newline at end of file
+