diff --git a/app/imports/api/engine/computation/buildComputation/computeInactiveStatus.js b/app/imports/api/engine/computation/buildComputation/computeInactiveStatus.js index b794a61e..fcb2be07 100644 --- a/app/imports/api/engine/computation/buildComputation/computeInactiveStatus.js +++ b/app/imports/api/engine/computation/buildComputation/computeInactiveStatus.js @@ -31,9 +31,10 @@ function childrenActive(prop){ switch (prop.type){ // Only equipped items have active children case 'item': return !!prop.equipped; - // The children of actions are always inactive + // The children of actions, spells, and triggers are always inactive case 'action': return false; case 'spell': return false; + case 'trigger': return false; // The children of notes are always inactive case 'note': return false; // Other children are active