1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 05:22:54 +08:00

Don't consider judgements beneath the minimum height as being applicable

Co-authored-by: Bartłomiej Dach <dach.bartlomiej@gmail.com>
This commit is contained in:
Dean Herbert 2022-03-06 01:00:47 +09:00 committed by GitHub
parent 08b3bc222d
commit f8ef352306
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -250,7 +250,7 @@ namespace osu.Game.Screens.Ranking.Statistics
public void UpdateOffset(float adjustment)
{
bool hasAdjustment = adjustment != value;
bool hasAdjustment = adjustment != value && adjustment / maxValue >= minimum_height;
if (boxAdjustment == null)
{