Reduced prod multiplier for Hacknet Node RAM. Faction pages now scroll. Bug fix

This commit is contained in:
Daniel Xie
2017-05-23 09:31:55 -05:00
parent 99e7af48a3
commit e1fb332251
4 changed files with 5 additions and 130 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.05, this.ram-1) *
Math.pow(1.04, this.ram-1) *
((this.numCores + 1) / 2) * Player.hacknet_node_money_mult;
if (isNaN(this.moneyGainRatePerSecond)) {
this.moneyGainRatePerSecond = 0;