Hide CharacterSetup if any part is done manually

This commit is contained in:
WBHarry 2025-07-31 15:09:39 +02:00
parent d9a0decbda
commit 39eb3dce69

View file

@ -320,7 +320,7 @@ export default class DhCharacter extends BaseDataActor {
} }
get needsCharacterSetup() { get needsCharacterSetup() {
return !this.class.value || !this.class.subclass; return !(this.class.value || this.class.subclass || this.ancestry || this.community);
} }
get spellcastModifier() { get spellcastModifier() {