Significantly buffed money gains from hacking. Slightly nerfed Hacknet Node production

This commit is contained in:
Daniel Xie
2017-05-30 16:04:33 -05:00
parent 18f447de0e
commit 92a1f41164
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -49,8 +49,8 @@ HacknetNode.prototype.updateMoneyGainRate = function() {
var gainPerLevel = CONSTANTS.HacknetNodeMoneyGainPerLevel;
this.moneyGainRatePerSecond = (this.level * gainPerLevel) *
Math.pow(1.04, this.ram-1) *
((this.numCores + 3) / 4) * Player.hacknet_node_money_mult;
Math.pow(1.039, this.ram-1) *
((this.numCores + 2.9) / 4) * Player.hacknet_node_money_mult;
if (isNaN(this.moneyGainRatePerSecond)) {
this.moneyGainRatePerSecond = 0;
dialogBoxCreate("Error in calculating Hacknet Node production. Please report to game developer");