diff --git a/Assets/Scripts/Games/NightWalkAgb/AgbNightWalk.cs b/Assets/Scripts/Games/NightWalkAgb/AgbNightWalk.cs index 2026d65f0..306f187cd 100644 --- a/Assets/Scripts/Games/NightWalkAgb/AgbNightWalk.cs +++ b/Assets/Scripts/Games/NightWalkAgb/AgbNightWalk.cs @@ -336,7 +336,7 @@ namespace HeavenStudio.Games { if (end.datamodel.Split(2) == "nightWalkAgb") { - if (end.beat <= entity.beat) tempEnds.Add(end); + tempEnds.Add(end); } } List tempEnds2 = new(); @@ -358,7 +358,7 @@ namespace HeavenStudio.Games double countInBeat = double.MinValue; float countInLength = 0; FindCountInBeatAndLength(lastSwitchBeat, ref countInBeat, ref countInLength); - return entity.beat >= countInBeat + countInLength; + return entity.beat >= countInBeat + countInLength && entity.beat >= lastSwitchBeat; } else {