From 1b4140ece2c7cb2ac1832d7f7c264c6206f2c694 Mon Sep 17 00:00:00 2001 From: "Lillith Rose (Device: Lucia)" Date: Sun, 8 Jun 2025 14:39:06 -0400 Subject: [PATCH] dont only rec 5s --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 11cdcf1..07f62c1 100644 --- a/src/index.ts +++ b/src/index.ts @@ -15,7 +15,7 @@ async function runCommand(event: Event) { 0, Math.floor((eventEnd.getTime() - now.getTime()) / 1000) ); - const command = commandBase.clone().duration(5); + const command = commandBase.clone().duration(secondsUntilEventEnd); const filename = event.name.replace(/ /g, "_");