Fixed experience/evasion

This commit is contained in:
WBHarry 2025-07-11 16:00:00 +02:00
parent e2ca4506cd
commit b555420ff7
3 changed files with 7 additions and 10 deletions

View file

@ -413,7 +413,7 @@ export default class DhCharacter extends BaseDataActor {
this.resources.hitPoints.maxTotal = (this.class.value?.system?.hitPoints ?? 0) + this.resources.hitPoints.bonus;
this.resources.stress.maxTotal = this.resources.stress.max + this.resources.stress.bonus;
this.evasion.total = (this.class?.evasion ?? 0) + this.evasion.bonus;
this.evasion.total = (this.class.value?.system?.evasion ?? 0) + this.evasion.bonus;
this.proficiency.total = this.proficiency.value + this.proficiency.bonus;
}