From 49ac22a076ac0d619f46471b71e6a3f61017f6f9 Mon Sep 17 00:00:00 2001 From: ChrisChrome Date: Fri, 18 Aug 2023 18:30:41 -0600 Subject: [PATCH] > Change the chances of word scramble --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index d336650..536457f 100644 --- a/index.js +++ b/index.js @@ -848,7 +848,7 @@ client.on('messageCreate', async message => { return; } // 1 in 50 chance to start a word scramble - if (Math.floor(Math.random() * 10) == 0) { + if (Math.floor(Math.random() * 25) == 0) { // Start a word scramble setCooldown({id: 0}, "wordscramble", 5 * 60 * 1000) gameData = wordScramble();