Actor Roll bonuses

This commit is contained in:
Dapoolp 2025-07-15 13:43:10 +02:00
parent 0fd62c610d
commit 7757d64ef9
20 changed files with 212 additions and 102 deletions

View file

@ -372,7 +372,7 @@ export default class DhpActor extends Actor {
getRollData() {
const rollData = super.getRollData();
rollData.prof = this.system.proficiency ?? 1;
rollData.cast = this.system.spellcast ?? 1;
rollData.cast = this.system.spellcastModifier ?? 1;
return rollData;
}