Slightly buffed hacknet nodes

This commit is contained in:
Daniel Xie
2017-06-01 08:36:49 -05:00
parent b53abeb280
commit 6ff028b5ea
6 changed files with 9 additions and 22 deletions
+1 -1
View File
@@ -49,7 +49,7 @@ HacknetNode.prototype.updateMoneyGainRate = function() {
var gainPerLevel = CONSTANTS.HacknetNodeMoneyGainPerLevel;
this.moneyGainRatePerSecond = (this.level * gainPerLevel) *
Math.pow(1.03, this.ram-1) *
Math.pow(1.035, this.ram-1) *
((this.numCores + 5) / 6) * Player.hacknet_node_money_mult;
if (isNaN(this.moneyGainRatePerSecond)) {
this.moneyGainRatePerSecond = 0;