From 02ac792ebef4972d301dea7b7f2d17e6cdccc3f6 Mon Sep 17 00:00:00 2001 From: Elliott DuCharme Date: Tue, 11 Aug 2026 08:05:30 -0500 Subject: [PATCH] Update UserJoin delay --- packages/backend/src/core/services/VoiceEventSoundsService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/backend/src/core/services/VoiceEventSoundsService.ts b/packages/backend/src/core/services/VoiceEventSoundsService.ts index 69338de..bf477ed 100644 --- a/packages/backend/src/core/services/VoiceEventSoundsService.ts +++ b/packages/backend/src/core/services/VoiceEventSoundsService.ts @@ -18,7 +18,7 @@ export type VoiceEventSoundsServiceDeps = { //Delays in ms for each event type before the sound is played. const soundDelays = { - UserJoin: 475, //Ensures the person who joined can also hear their sound. Gives time for their connection to init. + UserJoin: 1200, //Ensures the person who joined can also hear their sound. Gives time for their connection to init. UserLeave: 55, //Ensures others can hear this sound after the "leave call" Discord sound plays. };