From cbd679f2ce08d345fd8f6b9803deb4b590c7db5f Mon Sep 17 00:00:00 2001 From: Jenny Crowe Date: Sat, 5 Feb 2022 08:24:07 -0700 Subject: [PATCH] Forgot a playIndex comparison whoops --- Assets/Scripts/Util/Sound.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Scripts/Util/Sound.cs b/Assets/Scripts/Util/Sound.cs index cb1b06155..b4b13799a 100644 --- a/Assets/Scripts/Util/Sound.cs +++ b/Assets/Scripts/Util/Sound.cs @@ -51,7 +51,7 @@ namespace RhythmHeavenMania.Util { if (scheduled) { - if (AudioSettings.dspTime > scheduledTime) + if (AudioSettings.dspTime > scheduledTime && playIndex < 1) { StartCoroutine(NotRelyOnBeatSound()); playIndex++;