Skip to content

Commit

Permalink
add unit display to ranged communication pill
Browse files Browse the repository at this point in the history
  • Loading branch information
roth-michael committed Jan 22, 2025
1 parent 71a365a commit 6051584
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion module/applications/actor/sheet-v2-mixin.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ export default function ActorSheetV2Mixin(Base) {
const data = this.actor.system.traits?.languages?.communication?.[key];
if ( !data?.value ) continue;
traits.languages ??= [];
traits.languages.push({ label, value: data.value });
traits.languages.push({ label, value: `${data.value} ${data.units}`});
}

// Display weapon masteries
Expand Down

0 comments on commit 6051584

Please sign in to comment.