fix inactive voice and warnings not disappearing

This commit is contained in:
AstrlJelly 2023-10-10 23:41:37 -04:00
parent f04938bc1e
commit bcc417c9cf

View file

@ -706,7 +706,7 @@ namespace HeavenStudio.Games
break;
}
if (songPos >= wordClearTime && songPos < wordStartTime) {
if (songPos >= wordClearTime || songPos < wordStartTime) {
Word.Play("NoPose");
}
@ -780,10 +780,10 @@ namespace HeavenStudio.Games
public void DoWord(double beat, double length, int type, bool pitchVoice, float forcePitch, bool customLength, bool doSound = true)
{
Word.Play(DoWordSound(beat, length, type, customLength, pitchVoice, forcePitch, doSound));
Word.Play(DoWordSound(beat, length, type, pitchVoice, forcePitch, customLength, doSound));
}
public static string DoWordSound(double beat, double length, int type, bool customLength, bool pitchVoice = false, float forcePitch = 1, bool doSound = true)
public static string DoWordSound(double beat, double length, int type, bool pitchVoice = false, float forcePitch = 1, bool customLength = false, bool doSound = true)
{
double clear = type switch {
<= (int)HitThree.HitFour => beat + 4f,