Commented Fixes

This commit is contained in:
tyasuh.taeragan@gmail.com 2021-10-14 15:20:05 -04:00
parent f6ffe5b5be
commit db9c3193f7
2 changed files with 4 additions and 4 deletions

@ -9,4 +9,4 @@ upgradeHomeRam() Netscript Function
This function will upgrade amount of CORES on the player's home computer. The cost is the same as if you were to do it manually.
This function will return true if the player's home computer RAM is successfully upgraded, and false otherwise.
This function will return true if the player's home computer core count is successfully upgraded, and false otherwise.

@ -3284,7 +3284,7 @@ function NetscriptFunctions(workerScript: WorkerScript): NS {
// Check if we're at max CORES
const homeComputer = Player.getHomeComputer();
if (homeComputer.cpuCores >=8) {
workerScript.log("upgradeHomeCores", `Your home computer is at max CORES.`);
workerScript.log("upgradeHomeCores", `Your home computer is at max cores.`);
return false;
}
@ -3294,13 +3294,13 @@ function NetscriptFunctions(workerScript: WorkerScript): NS {
return false;
}
homeComputer.cpuCores *= 2;
homeComputer.cpuCores +=1;
Player.loseMoney(cost);
Player.gainIntelligenceExp(CONSTANTS.IntelligenceSingFnBaseExpGain);
workerScript.log(
"upgradeHomeCores",
`Purchased an additional core for home computer! It now has ${(homeComputer.cpuCores)} cores.`,);
`Purchased an additional core for home computer! It now has ${(homeComputer.cpuCores)} cores.`,);
return true;
},
getUpgradeHomeCoresCost: function (): any {