From 765a5863291d40c55f09204546694945c5092fbb Mon Sep 17 00:00:00 2001 From: Jack Date: Tue, 18 Aug 2020 17:44:23 +0100 Subject: [PATCH] added 0 to 58008 --- public/js/misc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/js/misc.js b/public/js/misc.js index 8ab786eee..afd0d4304 100644 --- a/public/js/misc.js +++ b/public/js/misc.js @@ -294,7 +294,7 @@ function getNumbers() { let randLen = Math.floor(Math.random() * 7) + 1; let ret = ""; for (let i = 0; i < randLen; i++) { - randomNum = Math.floor(Math.random() * 9) + 1; + randomNum = Math.floor(Math.random() * 10); ret += randomNum.toString(); } return ret;