Saving no longer saves logs of running scripts. Some more hacking augmentation nerfs. Reduced thread RAM cost multiplier from 1.02 to 1.01

This commit is contained in:
Daniel Xie
2017-06-18 04:31:14 -05:00
parent dc39b941dc
commit c2aa8d8110
6 changed files with 32 additions and 18 deletions
+1 -1
View File
@@ -142,7 +142,7 @@ function addWorkerScript(runningScriptObj, server) {
} else {
runningScriptObj.threads = 1;
}
var ramUsage = runningScriptObj.scriptRef.ramUsage * threads * Math.pow(1.02, threads-1);
var ramUsage = runningScriptObj.scriptRef.ramUsage * threads * Math.pow(1.01, threads-1);
server.ramUsed += ramUsage;
//Create the WorkerScript