From 1ca1177974f71292324e9e5443b3a70ec7645dd1 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 cb1b0615..b4b13799 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++;