Merge branch 'feature/party-sheet' of https://github.com/Foundryborne/daggerheart into feature/party-sheet

This commit is contained in:
WBHarry 2025-11-04 17:20:29 +01:00
commit a442cb904b
4 changed files with 6 additions and 5 deletions

View file

@ -675,7 +675,6 @@ export default class DhCharacter extends BaseDataActor {
}
_getTags() {
const tags = [this.class.value.name, this.class.subclass.name, this.community.name, this.ancestry.name];
return tags;
return [this.class.value?.name, this.class.subclass?.name, this.community?.name, this.ancestry?.name].filter((t) => !!t);
}
}