Update BitNode.js

This commit is contained in:
Olivier Gagnon 2018-07-29 03:49:45 -04:00 committed by GitHub
parent 55abdc11b3
commit 68f3423ef5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -357,8 +357,8 @@ function initBitNodeMultipliers() {
sf12Lvl = Player.sourceFiles[i].lvl;
}
}
var inc = Math.pow(1.02, sf12Lvl);
var dec = Math.pow(0.98, sf12Lvl);
var inc = Math.pow(1.025, sf12Lvl);
var dec = 1/inc;
BitNodeMultipliers.HackingLevelMultiplier = dec;
BitNodeMultipliers.ServerMaxMoney = dec;