Merged with main

This commit is contained in:
WBHarry 2025-06-25 23:02:50 +02:00
commit 7ac3066f68
18 changed files with 279 additions and 67 deletions

View file

@ -128,6 +128,10 @@ export default class DhCharacter extends BaseDataActor {
return this.parent.items.find(x => x.type === 'community') ?? null;
}
get needsCharacterSetup() {
return !this.class.value || !this.class.subclass;
}
get domains() {
const classDomains = this.class.value ? this.class.value.system.domains : [];
const multiclassDomains = this.multiclass.value ? this.multiclass.value.system.domains : [];