mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-06-06 04:44:16 +02:00
Corrected null:ish
This commit is contained in:
parent
b04d9ac6aa
commit
24b871993a
1 changed files with 1 additions and 1 deletions
|
|
@ -198,7 +198,7 @@ export default class DhActiveEffect extends foundry.documents.ActiveEffect {
|
||||||
? Roll.replaceFormulaData(key, { stacks: effect.system.stacking.value })
|
? Roll.replaceFormulaData(key, { stacks: effect.system.stacking.value })
|
||||||
: key;
|
: key;
|
||||||
const evalValue = this.effectSafeEval(itemAbleRollParse(stackingParsedValue, actorModel, itemModel));
|
const evalValue = this.effectSafeEval(itemAbleRollParse(stackingParsedValue, actorModel, itemModel));
|
||||||
return evalValue ? evalValue : key;
|
return evalValue ?? key;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue