From 22d41d21b88acb7422a0afcda8414682710bd2ed Mon Sep 17 00:00:00 2001 From: Til <89487150+TechnikTil@users.noreply.github.com> Date: Fri, 17 Jan 2025 13:33:16 -0700 Subject: [PATCH] i think this does it (#3955) --- source/funkin/play/PlayState.hx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/source/funkin/play/PlayState.hx b/source/funkin/play/PlayState.hx index b62a6331ee..5df12415ee 100644 --- a/source/funkin/play/PlayState.hx +++ b/source/funkin/play/PlayState.hx @@ -906,7 +906,7 @@ class PlayState extends MusicBeatSubState Conductor.instance.formatOffset = 0.0; } - Conductor.instance.update(); // Normal conductor update. + Conductor.instance.update(Conductor.instance.songPosition + elapsed * 1000, false); // Normal conductor update. } var androidPause:Bool = false; @@ -1447,7 +1447,9 @@ class PlayState extends MusicBeatSubState } if (!startingSong - && (Math.abs(FlxG.sound.music.time - correctSync) > 5 || Math.abs(playerVoicesError) > 5 || Math.abs(opponentVoicesError) > 5)) + && (Math.abs(FlxG.sound.music.time - correctSync) > 100 + || Math.abs(playerVoicesError) > 100 + || Math.abs(opponentVoicesError) > 100)) { trace("VOCALS NEED RESYNC"); if (vocals != null)