diff --git a/Minecraft.Client/Common/UI/UIControl_Slider.cpp b/Minecraft.Client/Common/UI/UIControl_Slider.cpp index 2ecc895f8..7d9c6942a 100644 --- a/Minecraft.Client/Common/UI/UIControl_Slider.cpp +++ b/Minecraft.Client/Common/UI/UIControl_Slider.cpp @@ -96,7 +96,7 @@ void UIControl_Slider::handleSliderMove(int newValue) if (newValue % 10 == 0) { ui.PlayUISFX(eSFX_Scroll); m_current = newValue; - } else if (valueCount < 18) { + } else if (valueCount < 20) { ui.PlayUISFX(eSFX_Scroll); m_current = newValue; }