Faction Donation conversion rate is 000000 for 1 reputation. Costs for all augmentations increased by about 110-120%

This commit is contained in:
Daniel Xie
2017-05-31 18:39:03 -05:00
parent 070f4df191
commit 6c6186ffd7
5 changed files with 103 additions and 95 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.037, this.ram-1) *
((this.numCores + 4) / 5) * Player.hacknet_node_money_mult;
Math.pow(1.035, this.ram-1) *
((this.numCores + 5) / 6) * Player.hacknet_node_money_mult;
if (isNaN(this.moneyGainRatePerSecond)) {
this.moneyGainRatePerSecond = 0;
dialogBoxCreate("Error in calculating Hacknet Node production. Please report to game developer");