diff --git a/app/imports/api/engine/actions/applyPropertyByType/applySavingThrow.js b/app/imports/api/engine/actions/applyPropertyByType/applySavingThrow.js index 3a11e935..6064e3bd 100644 --- a/app/imports/api/engine/actions/applyPropertyByType/applySavingThrow.js +++ b/app/imports/api/engine/actions/applyPropertyByType/applySavingThrow.js @@ -31,7 +31,8 @@ export default function applySavingThrow(node, actionContext){ // succeeeded and failed if (!saveTargets?.length){ scope['$saveFailed'] = {value: true}; - scope['$saveSucceeded'] = {value: true}; + scope['$saveSucceeded'] = { value: true }; + applyNodeTriggers(node, 'after', actionContext); return node.children.forEach(child => applyProperty(child, actionContext)); }