From d126b6d8c518457bec5f3b6948ad75e444d96bee Mon Sep 17 00:00:00 2001 From: Olivier Gagnon Date: Sat, 1 May 2021 23:44:23 -0400 Subject: [PATCH] Fix sf minus 1 bad constant --- src/Exploits/applyExploits.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Exploits/applyExploits.ts b/src/Exploits/applyExploits.ts index f1cdfe32d..fede837a4 100644 --- a/src/Exploits/applyExploits.ts +++ b/src/Exploits/applyExploits.ts @@ -4,8 +4,8 @@ export function applyExploit(): void { if (Player.exploits && Player.exploits.length === 0) { return; } - const inc = Math.pow(1.0001, Player.exploits.length); - const dec = Math.pow(0.9999, Player.exploits.length); + const inc = Math.pow(1.001, Player.exploits.length); + const dec = Math.pow(0.999, Player.exploits.length); Player.hacking_chance_mult *= inc; Player.hacking_speed_mult *= inc;