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
+3 -3
View File
@@ -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 {