diff --git a/module/dice/d20Roll.mjs b/module/dice/d20Roll.mjs index c0069822..e9c447e4 100644 --- a/module/dice/d20Roll.mjs +++ b/module/dice/d20Roll.mjs @@ -107,6 +107,12 @@ export default class D20Roll extends DHRoll { this.options.data.companion; actorExperiences = companion?.system?.experiences ?? {}; } + for (const m of this.options.experiences?.filter(m => !!actorExperiences[m]) ?? []) { + this.options.roll.modifiers.push({ + label: actorExperiences[m].name, + value: actorExperiences[m].value + }); + } this.addModifiers(); if (this.options.extraFormula) {