From 97da39270d7bb43e8d61bc33b3785124a7680cea Mon Sep 17 00:00:00 2001 From: Trinidad <anchaiscastilla@gmail.com> Date: Mon, 6 May 2024 13:48:45 +0200 Subject: [PATCH] modified: src/js/utilsPC.js --- src/js/utilsPC.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/utilsPC.js b/src/js/utilsPC.js index 6b2c6cc70c2..21d425878a9 100644 --- a/src/js/utilsPC.js +++ b/src/js/utilsPC.js @@ -1325,7 +1325,7 @@ globalThis.isPlayerFrigid = function() { * @param {number} strength - multiplier, defaults to 1 */ function weak(strength = 1) { - let luck = 1 + Math.floor(V.rep / 5000); // the higher the reputation, less chances of reducing rumors since society expects more authority of the player + let luck = 1 + Math.floor(V.rep / 7000); // the higher the reputation, less chances of reducing rumors since society expects more authority of the player if (V.PC.badRumors.weakness > 1 && jsRandom(0, luck) <= 1) { V.PC.badRumors.weakness - Math.min(strength, V.PC.badRumors.weakness - 1); } -- GitLab