diff --git a/packages/voice/src/DataStore.ts b/packages/voice/src/DataStore.ts index 7a525fe16..f3e5b80a9 100644 --- a/packages/voice/src/DataStore.ts +++ b/packages/voice/src/DataStore.ts @@ -136,7 +136,7 @@ function prepareNextAudioFrame(players: AudioPlayer[]) { if (!nextPlayer) { if (nextTime !== -1) { - audioCycleInterval = setTimeout(() => audioCycleStep(), nextTime - Date.now()); + audioCycleInterval = setTimeout(() => audioCycleStep(), Math.max(1, nextTime - Date.now())); } return;