This commit is contained in:
Rapandrasmus
2023-08-12 05:32:22 +02:00
committed by GitHub
parent 121df4a2d3
commit f0a4fee82d
2 changed files with 13 additions and 10 deletions

View File

@ -276,7 +276,7 @@ namespace HeavenStudio.Games
double goodBeat = tempEvents[0].beat + tempEvents[0].length;
for (int i = 1; i < tempEvents.Count; i++)
{
if (tempEvents[i].beat != goodBeat)
if (tempEvents[i].beat < goodBeat)
{
tempEvents2.Add(tempEvents[i]);
}