diff --git a/packages/core/src/runtime/actor.ts b/packages/core/src/runtime/actor.ts index 917fdfc..bc2b4c8 100644 --- a/packages/core/src/runtime/actor.ts +++ b/packages/core/src/runtime/actor.ts @@ -369,6 +369,7 @@ export class Turn { dataflow(a: LocalAction) { const f = this.activeFacet; + f.preventInertCheck(); const b = () => f.isLive && Turn.active._inFacet(f, a); f.onStop(() => f.actor.dataflowGraph.forgetSubject(b)); f.actor.dataflowGraph.withSubject(b, b);