diff --git a/markdown/bitburner.bladeburner.nextupdate.md b/markdown/bitburner.bladeburner.nextupdate.md index fcb3c7175..f1190d177 100644 --- a/markdown/bitburner.bladeburner.nextupdate.md +++ b/markdown/bitburner.bladeburner.nextupdate.md @@ -19,7 +19,7 @@ Promise that resolves to the number of milliseconds of Bladeburner time that wer ## Remarks -RAM cost: 1 GB +RAM cost: 0 GB The amount of real time spent asleep between updates can vary due to "bonus time" (usually 1 second). diff --git a/markdown/bitburner.corporation.nextupdate.md b/markdown/bitburner.corporation.nextupdate.md index 55374d050..536ae4ea5 100644 --- a/markdown/bitburner.corporation.nextupdate.md +++ b/markdown/bitburner.corporation.nextupdate.md @@ -19,7 +19,7 @@ Promise that resolves to the name of the state that was just processed. ## Remarks -RAM cost: 1 GB +RAM cost: 0 GB The amount of real time spent asleep between updates can vary due to "bonus time" (usually 200 milliseconds - 2 seconds). diff --git a/markdown/bitburner.darknet.nextmutation.md b/markdown/bitburner.darknet.nextmutation.md index 9925e87f6..0965f5ab5 100644 --- a/markdown/bitburner.darknet.nextmutation.md +++ b/markdown/bitburner.darknet.nextmutation.md @@ -29,5 +29,5 @@ Promise<void> ## Remarks -RAM cost: 1 GB +RAM cost: 0 GB diff --git a/markdown/bitburner.gang.nextupdate.md b/markdown/bitburner.gang.nextupdate.md index 6003f6fab..2e3d0f9b7 100644 --- a/markdown/bitburner.gang.nextupdate.md +++ b/markdown/bitburner.gang.nextupdate.md @@ -19,7 +19,7 @@ Promise that resolves to the number of milliseconds of Gang time that were proce ## Remarks -RAM cost: 1 GB +RAM cost: 0 GB The amount of real time spent asleep between updates can vary due to "bonus time". diff --git a/markdown/bitburner.grafting.waitforongoinggrafting.md b/markdown/bitburner.grafting.waitforongoinggrafting.md index 66ff59f9d..3a16e4f71 100644 --- a/markdown/bitburner.grafting.waitforongoinggrafting.md +++ b/markdown/bitburner.grafting.waitforongoinggrafting.md @@ -19,5 +19,5 @@ A promise that resolves when the current grafting finishes or is canceled. If th ## Remarks -RAM cost: 1 GB +RAM cost: 0 GB diff --git a/markdown/bitburner.stock.nextupdate.md b/markdown/bitburner.stock.nextupdate.md index 8d848dc7a..4d9798990 100644 --- a/markdown/bitburner.stock.nextupdate.md +++ b/markdown/bitburner.stock.nextupdate.md @@ -19,7 +19,7 @@ Promise that resolves to the number of milliseconds of Stock Market time that we ## Remarks -RAM cost: 1 GB +RAM cost: 0 GB The amount of real time spent asleep between updates can vary due to "bonus time" (usually 4 seconds - 6 seconds). diff --git a/src/Netscript/RamCostGenerator.ts b/src/Netscript/RamCostGenerator.ts index f038eb0ca..3e1b135c7 100644 --- a/src/Netscript/RamCostGenerator.ts +++ b/src/Netscript/RamCostGenerator.ts @@ -77,7 +77,7 @@ export const RamCostConstants = { InfiltrationCalculateRewards: 2.5, InfiltrationGetInfiltrations: 15, - CycleTiming: 1, + CycleTiming: 0, } as const; function SF4Cost(cost: number): () => number { @@ -461,7 +461,7 @@ const grafting = { getAugmentationGraftTime: 3.75, getGraftableAugmentations: 5, graftAugmentation: 7.5, - waitForOngoingGrafting: 1, + waitForOngoingGrafting: 0, } as const; const corporation = { diff --git a/src/ScriptEditor/NetscriptDefinitions.d.ts b/src/ScriptEditor/NetscriptDefinitions.d.ts index 1c710b7c2..9f9df89ce 100644 --- a/src/ScriptEditor/NetscriptDefinitions.d.ts +++ b/src/ScriptEditor/NetscriptDefinitions.d.ts @@ -1725,7 +1725,7 @@ export interface Stock { /** * Sleep until the next Stock Market price update has happened. * @remarks - * RAM cost: 1 GB + * RAM cost: 0 GB * * The amount of real time spent asleep between updates can vary due to "bonus time" * (usually 4 seconds - 6 seconds). @@ -3993,7 +3993,7 @@ export interface Bladeburner { /** * Sleep until the next Bladeburner update has happened. * @remarks - * RAM cost: 1 GB + * RAM cost: 0 GB * * The amount of real time spent asleep between updates can vary due to "bonus time" * (usually 1 second). @@ -4795,7 +4795,7 @@ export interface Darknet { * - New servers appear on the net (which may be previously offline servers, but cleaned and with a new password). * * @remarks - * RAM cost: 1 GB + * RAM cost: 0 GB */ nextMutation(): Promise; @@ -5150,7 +5150,7 @@ export interface Gang { /** * Sleeps until the next Gang update has happened. * @remarks - * RAM cost: 1 GB + * RAM cost: 0 GB * * The amount of real time spent asleep between updates can vary due to "bonus time". * @@ -6115,7 +6115,7 @@ export interface Grafting { * Wait until the ongoing grafting finishes or is canceled. * * @remarks - * RAM cost: 1 GB + * RAM cost: 0 GB * * @returns A promise that resolves when the current grafting finishes or is canceled. If there is no current work, * the promise resolves immediately. If the current work is not a grafting work, the promise rejects immediately. @@ -10465,7 +10465,7 @@ export interface Corporation extends WarehouseAPI, OfficeAPI { * Sleep until the next Corporation update happens. * * @remarks - * RAM cost: 1 GB + * RAM cost: 0 GB * * The amount of real time spent asleep between updates can vary due to "bonus time" * (usually 200 milliseconds - 2 seconds).