From 48305edb2fddcc155aa09697a043b816f9cfa32c Mon Sep 17 00:00:00 2001 From: Strange-Shotgun Date: Mon, 10 Feb 2025 14:11:32 +0800 Subject: [PATCH] Update util.js The jackopt don't look right hmm --- server/lib/util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/lib/util.js b/server/lib/util.js index 0bde052d9..8983ee820 100644 --- a/server/lib/util.js +++ b/server/lib/util.js @@ -49,7 +49,7 @@ exports.sumArray = arr => { exports.signedSqrt = x => Math.sign(x) * Math.sqrt(Math.abs(x)) -exports.getJackpot = x => x > 39450 ? Math.pow(x - 26300, 0.85) + 26300 : x / 1.5 +exports.getJackpot = x => x > 39450 ? Math.pow(x - 39450, 0.85) + 26300 : x / 1.5 exports.serverStartTime = Date.now();