diff --git a/src/module/combat/combatant.ts b/src/module/combat/combatant.ts index 0a1def95..ee34e831 100644 --- a/src/module/combat/combatant.ts +++ b/src/module/combat/combatant.ts @@ -32,8 +32,8 @@ export class OSECombatant extends Combatant { let term = formula || CONFIG.Combat.initiative.formula; if (this.isSlow) term = `${OSECombatant.INITIATIVE_VALUE_SLOWED}`; if (this.isDefeated) term = `${OSECombatant.INITIATIVE_VALUE_DEFEATED}`; - - return new Roll(term); + const rollData = this.actor?.getRollData() || {}; + return new Roll(term, rollData); } async getData(options = {}) {