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();