Skip to content

Commit

Permalink
Merge pull request #151 from Emik03/osu-sv-lower-bound-fix
Browse files Browse the repository at this point in the history
Set lower bound of osu! converted SVs to 0.01
  • Loading branch information
Warp9000 authored Apr 8, 2024
2 parents 1382bf3 + 85917af commit 256800a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Quaver.API/Maps/Parsers/OsuBeatmap.cs
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,7 @@ public Qua ToQua(bool checkValidity = true)
qua.SliderVelocities.Add(new SliderVelocityInfo
{
StartTime = tp.Offset,
Multiplier = (-100 / tp.MillisecondsPerBeat).Clamp(0.1f, 10)
Multiplier = (-100 / tp.MillisecondsPerBeat).Clamp(0.01f, 10)
});
}
else
Expand Down

0 comments on commit 256800a

Please sign in to comment.