Skip to content

Commit

Permalink
Set lower bound of osu! converted SVs to 0.01
Browse files Browse the repository at this point in the history
  • Loading branch information
Emik03 committed Mar 4, 2024
1 parent f798abe commit 85917af
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 85917af

Please sign in to comment.