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:
parent
08b3bc222d
commit
f8ef352306
@ -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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user