summaryrefslogtreecommitdiff
path: root/client/lib/util.js
diff options
context:
space:
mode:
Diffstat (limited to 'client/lib/util.js')
-rw-r--r--client/lib/util.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/lib/util.js b/client/lib/util.js
index d0a3914..95f1bc4 100644
--- a/client/lib/util.js
+++ b/client/lib/util.js
@@ -27,7 +27,7 @@ function roundInterval(interval) {
return Math.round(interval * 10000000);
}
const intervalInRange = (interval, root) =>
- 20 < interval * root && interval * root < 15000;
+ 20 < interval * root && interval * root < 20000;
const lerp = (n, a, b) => (b - a) * n + a;
const clamp = (n, a = 0, b = 1) => (n < a ? a : n < b ? n : b);