diff --git a/js/builder/builder_graph.js b/js/builder/builder_graph.js index 9ceaeb7..0a6cbdb 100644 --- a/js/builder/builder_graph.js +++ b/js/builder/builder_graph.js @@ -951,6 +951,8 @@ class EditableIDSetterNode extends ComputeNode { this.notify_nodes = notify_nodes.slice(); for (const child of this.notify_nodes) { child.link_to(this); + child.fail_cb = true; + child.mark_input_clean(this.name, null); } } @@ -987,6 +989,8 @@ class SkillPointSetterNode extends ComputeNode { this.notify_nodes = notify_nodes.slice(); for (const child of this.notify_nodes) { child.link_to(this); + child.fail_cb = true; + child.mark_input_clean(this.name, null); } }