We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03c3cce commit 558aacfCopy full SHA for 558aacf
osu.Game.Rulesets.Taiko/Mods/TaikoModSimplifiedRhythm.cs
@@ -108,7 +108,7 @@ void processPattern(int patternEndIndex)
108
if (indexInPattern % 3 == 1)
109
taikoBeatmap.HitObjects.Remove(hits[j]);
110
else if (indexInPattern % 3 == 2)
111
- hits[j].StartTime = hits[j + 1].StartTime - controlPointInfo.TimingPointAt(hits[j].StartTime).BeatLength / adjustedRhythm;
+ hits[j].StartTime = hits[j - 2].StartTime + controlPointInfo.TimingPointAt(hits[j].StartTime).BeatLength / adjustedRhythm;
112
113
break;
114
}
0 commit comments