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
@@ -880,7 +880,7 @@ function evaluate(exp, workerScript) {
workerScript.scriptRef.log("Cannot getServerMoneyAvailable(). Invalid IP or hostname passed in: " + ip);
return;
}
workerScript.scriptRef.log("getServerMoneyAvailable() returned " + formatNumber(server.moneyAvailable, 2));
workerScript.scriptRef.log("getServerMoneyAvailable() returned " + formatNumber(server.moneyAvailable, 2) + " for " + server.hostname);
resolve(server.moneyAvailable);
}, CONSTANTS.CodeInstructionRunTime);
}, function(e) {
@@ -900,7 +900,7 @@ function evaluate(exp, workerScript) {
workerScript.scriptRef.log("Cannot getServerSecurityLevel(). Invalid IP or hostname passed in: " + ip);
return;
}
workerScript.scriptRef.log("getServerSecurityLevel() returned " + formatNumber(server.hackDifficulty, 3));
workerScript.scriptRef.log("getServerSecurityLevel() returned " + formatNumber(server.hackDifficulty, 3) + " for " + server.hostname);
resolve(server.hackDifficulty);
}, CONSTANTS.CodeInstructionRunTime);
}, function(e) {