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

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)
{