1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-22 00:07:19 +08:00

Merge pull request #2873 from nl-tatatat/master

Remove low BPM barline increase in taiko
This commit is contained in:
Dean Herbert 2018-06-25 16:40:24 +09:00 committed by GitHub
commit a843344119
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -70,8 +70,6 @@ namespace osu.Game.Rulesets.Taiko.UI
Playfield.Add(isMajor ? new DrawableBarLineMajor(barLine) : new DrawableBarLine(barLine));
double bl = currentPoint.BeatLength;
if (bl < 800)
bl *= (int)currentPoint.TimeSignature;
time += bl;
currentBeat++;