diff --git a/src/catalyst/core/tick.ts b/src/catalyst/core/tick.ts index eaac2b1..9f4a778 100644 --- a/src/catalyst/core/tick.ts +++ b/src/catalyst/core/tick.ts @@ -113,7 +113,7 @@ system.runInterval(() => { // tick timeouts for (const handle of [...timeOuts]) { // if counter drops to zero, execute the timeout - if (--handle.counter != 0) + if (--handle.counter > 0) continue; try {