Forgot a playIndex comparison whoops

This commit is contained in:
Jenny Crowe 2022-02-05 08:24:07 -07:00
parent 6a566c3c63
commit cbd679f2ce

View file

@ -51,7 +51,7 @@ namespace RhythmHeavenMania.Util
{ {
if (scheduled) if (scheduled)
{ {
if (AudioSettings.dspTime > scheduledTime) if (AudioSettings.dspTime > scheduledTime && playIndex < 1)
{ {
StartCoroutine(NotRelyOnBeatSound()); StartCoroutine(NotRelyOnBeatSound());
playIndex++; playIndex++;