Fix sf minus 1 bad constant

This commit is contained in:
Olivier Gagnon 2021-05-01 23:44:23 -04:00
parent 7172ef6dae
commit d126b6d8c5

@ -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;