Fix rep transfer on new job

This commit is contained in:
Olivier Gagnon
2021-10-26 22:03:34 -04:00
parent 504ee46950
commit 7733ee0375
6 changed files with 51 additions and 49 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ export function getPurchaseServerCost(ram: number): number {
return Infinity;
}
const upg = Math.max(0, Math.log(sanitizedRam) / Math.log(2) - 9);
const upg = Math.max(0, Math.log(sanitizedRam) / Math.log(2) - 6);
return (
sanitizedRam *