diff --git a/Content.Shared/Rounding/ContentHelpers.cs b/Content.Shared/Rounding/ContentHelpers.cs index 65fcb7e367..b1525ed4ee 100644 --- a/Content.Shared/Rounding/ContentHelpers.cs +++ b/Content.Shared/Rounding/ContentHelpers.cs @@ -48,7 +48,7 @@ } var preround = toOne * (levels - 1); - if (toOne <= threshold || levels <= 2) + if (toOne < threshold || levels <= 2) { return (int) Math.Ceiling(preround); }