From 9aaa9bee6b2c72c6771a984243524990622e6a9a Mon Sep 17 00:00:00 2001 From: alex Date: Fri, 24 Oct 2025 20:51:12 +0100 Subject: [PATCH] fixes + tidying --- packages/core/neocyclist.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/neocyclist.mjs b/packages/core/neocyclist.mjs index fa1013df1..3e412074d 100644 --- a/packages/core/neocyclist.mjs +++ b/packages/core/neocyclist.mjs @@ -44,7 +44,7 @@ export class NeoCyclist { const timeUntilTrigger = cycleToSeconds(hap.whole.begin - this.cycle, this.cps); const targetTime = timeUntilTrigger + currentTime + this.latency; const duration = cycleToSeconds(hap.duration, this.cps); - onTrigger?.(hap, 0, duration, this.cps, targetTime, begin); + onTrigger?.(hap, 0, duration, this.cps, targetTime); } }); };