diff --git a/markdown/bitburner.bladeburner.inbladeburner.md b/markdown/bitburner.bladeburner.inbladeburner.md index a2d36ba10..78870e399 100644 --- a/markdown/bitburner.bladeburner.inbladeburner.md +++ b/markdown/bitburner.bladeburner.inbladeburner.md @@ -19,5 +19,5 @@ whether player is a member of Bladeburner division. ## Remarks -RAM cost: 1 GB +RAM cost: 0 GB diff --git a/markdown/bitburner.gang.ingang.md b/markdown/bitburner.gang.ingang.md index d1470ecbc..9029163a3 100644 --- a/markdown/bitburner.gang.ingang.md +++ b/markdown/bitburner.gang.ingang.md @@ -4,7 +4,7 @@ ## Gang.inGang() method -Check if you're in a gang. +Check if you're in a gang. Does not require API access. **Signature:** @@ -19,5 +19,5 @@ True if you're in a gang, false otherwise. ## Remarks -RAM cost: 1GB +RAM cost: 0GB diff --git a/markdown/bitburner.gang.md b/markdown/bitburner.gang.md index 5a2528b91..2145895fa 100644 --- a/markdown/bitburner.gang.md +++ b/markdown/bitburner.gang.md @@ -234,7 +234,7 @@ Get stats of a task. -Check if you're in a gang. +Check if you're in a gang. Does not require API access. diff --git a/src/Netscript/RamCostGenerator.ts b/src/Netscript/RamCostGenerator.ts index dc763fead..480e2b5aa 100644 --- a/src/Netscript/RamCostGenerator.ts +++ b/src/Netscript/RamCostGenerator.ts @@ -272,7 +272,7 @@ const format = { // Gang API const gang = { createGang: RamCostConstants.GangApiBase / 4, - inGang: RamCostConstants.GangApiBase / 4, + inGang: 0, getMemberNames: RamCostConstants.GangApiBase / 4, renameMember: 0, getGangInformation: RamCostConstants.GangApiBase / 2, @@ -334,7 +334,7 @@ const go = { // Bladeburner API const bladeburner = { - inBladeburner: RamCostConstants.BladeburnerApiBase / 4, + inBladeburner: 0, getContractNames: 0, getOperationNames: 0, getBlackOpNames: 0, diff --git a/src/ScriptEditor/NetscriptDefinitions.d.ts b/src/ScriptEditor/NetscriptDefinitions.d.ts index b0b3fce80..52e5bf18d 100644 --- a/src/ScriptEditor/NetscriptDefinitions.d.ts +++ b/src/ScriptEditor/NetscriptDefinitions.d.ts @@ -3988,9 +3988,10 @@ export interface Bladeburner { */ nextUpdate(): Promise; - /** Returns whether player is a member of Bladeburner division. Does not require API access. + /** + * Returns whether player is a member of Bladeburner division. Does not require API access. * @remarks - * RAM cost: 1 GB + * RAM cost: 0 GB * * @returns whether player is a member of Bladeburner division. */ inBladeburner(): boolean; @@ -4833,9 +4834,10 @@ export interface Gang { createGang(faction: FactionName): boolean; /** - * Check if you're in a gang. + * Check if you're in a gang. Does not require API access. * @remarks - * RAM cost: 1GB + * RAM cost: 0GB + * * @returns True if you're in a gang, false otherwise. */ inGang(): boolean;