Skip to content

Commit

Permalink
Fixed Squeeze/Widen config parsing
Browse files Browse the repository at this point in the history
oops, seems like one check was inverted and squeeze/widen threashold configs actually didn't work... oops ^^"
  • Loading branch information
Chickenbreadlp committed Jul 27, 2024
1 parent 02735c7 commit cf341c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ConfigManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ public void Reload() {
}
}

if (_squeezeT > _widenT)
if (_squeezeT < _widenT)
{
squeezeThreshold = _squeezeT;
widenThreshold = _widenT;
Expand Down

0 comments on commit cf341c7

Please sign in to comment.