fix ram miscalc

This commit is contained in:
Olivier Gagnon 2021-10-09 15:07:42 -04:00
parent 2bf47c60df
commit f9afff57b2
4 changed files with 4 additions and 4 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -101,7 +101,7 @@ function removeWorkerScript(workerScript: WorkerScript, rerenderUi = true): void
// Recalculate ram used on that server
server.ramUsed = 0;
for (const rs of server.runningScripts) server.ramUsed += rs.ramUsage;
for (const rs of server.runningScripts) server.ramUsed += rs.ramUsage * rs.threads;
// Delete script from global pool (workerScripts)
const res = workerScripts.delete(workerScript.pid);

@ -489,7 +489,7 @@ export class Sleeve extends Person {
cyclesUsed = 0;
}
}
console.log(cyclesUsed);
this.currentTaskTime += time;
// Shock gradually goes towards 100