Fix repeated scroll sounds in mod settings 2

This commit is contained in:
amevarashi 2022-05-10 12:02:43 +05:00
parent 18f066d7ff
commit d60a49045a
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ namespace RJWSexperience.Settings
if (Mathf.Abs(fieldValue - value) > minChange)
value = fieldValue;
else if (Mathf.Abs(sliderValue - value) > minChange)
else
value = sliderValue;
}
}