From c638d858c6a55d6f4f25621fe59a781bbb2679aa Mon Sep 17 00:00:00 2001 From: catloversg <152669316+catloversg@users.noreply.github.com> Date: Mon, 11 Nov 2024 07:40:13 +0700 Subject: [PATCH] DOCUMENTATION: Clarify FactionWorkRepGain multiplier (#1767) --- markdown/bitburner.bitnodemultipliers.factionworkrepgain.md | 2 +- markdown/bitburner.bitnodemultipliers.md | 2 +- src/BitNode/BitNodeMultipliers.ts | 2 +- src/ScriptEditor/NetscriptDefinitions.d.ts | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/markdown/bitburner.bitnodemultipliers.factionworkrepgain.md b/markdown/bitburner.bitnodemultipliers.factionworkrepgain.md index 34731ce3a..9f24c6344 100644 --- a/markdown/bitburner.bitnodemultipliers.factionworkrepgain.md +++ b/markdown/bitburner.bitnodemultipliers.factionworkrepgain.md @@ -4,7 +4,7 @@ ## BitNodeMultipliers.FactionWorkRepGain property -Influences how much rep the player gains when performing work for a faction. +Influences how much rep the player gains when performing work for a faction or donating to it. **Signature:** diff --git a/markdown/bitburner.bitnodemultipliers.md b/markdown/bitburner.bitnodemultipliers.md index 2fd6e2971..6a4222cf3 100644 --- a/markdown/bitburner.bitnodemultipliers.md +++ b/markdown/bitburner.bitnodemultipliers.md @@ -38,7 +38,7 @@ interface BitNodeMultipliers | [DexterityLevelMultiplier](./bitburner.bitnodemultipliers.dexteritylevelmultiplier.md) | | number | Influences how quickly the player's dexterity level (not exp) scales | | [FactionPassiveRepGain](./bitburner.bitnodemultipliers.factionpassiverepgain.md) | | number | Influences how much rep the player gains in each faction simply by being a member. | | [FactionWorkExpGain](./bitburner.bitnodemultipliers.factionworkexpgain.md) | | number | Influences the experience gained for each ability when the player completes work for a Faction. | -| [FactionWorkRepGain](./bitburner.bitnodemultipliers.factionworkrepgain.md) | | number | Influences how much rep the player gains when performing work for a faction. | +| [FactionWorkRepGain](./bitburner.bitnodemultipliers.factionworkrepgain.md) | | number | Influences how much rep the player gains when performing work for a faction or donating to it. | | [FourSigmaMarketDataApiCost](./bitburner.bitnodemultipliers.foursigmamarketdataapicost.md) | | number | Influences how much it costs to unlock the stock market's 4S Market Data API | | [FourSigmaMarketDataCost](./bitburner.bitnodemultipliers.foursigmamarketdatacost.md) | | number | Influences how much it costs to unlock the stock market's 4S Market Data (NOT API) | | [GangSoftcap](./bitburner.bitnodemultipliers.gangsoftcap.md) | | number | Influences the respect gain and money gain of your gang. | diff --git a/src/BitNode/BitNodeMultipliers.ts b/src/BitNode/BitNodeMultipliers.ts index 0d65bc3d1..86609db23 100644 --- a/src/BitNode/BitNodeMultipliers.ts +++ b/src/BitNode/BitNodeMultipliers.ts @@ -72,7 +72,7 @@ export class BitNodeMultipliers { /** Influences the experience gained for each ability when the player completes work for a Faction. */ FactionWorkExpGain = 1; - /** Influences how much rep the player gains when performing work for a faction. */ + /** Influences how much rep the player gains when performing work for a faction or donating to it. */ FactionWorkRepGain = 1; /** Influences how much it costs to unlock the stock market's 4S Market Data API */ diff --git a/src/ScriptEditor/NetscriptDefinitions.d.ts b/src/ScriptEditor/NetscriptDefinitions.d.ts index 6fe06ecbb..8b15e36a2 100644 --- a/src/ScriptEditor/NetscriptDefinitions.d.ts +++ b/src/ScriptEditor/NetscriptDefinitions.d.ts @@ -690,7 +690,7 @@ interface BitNodeMultipliers { FactionPassiveRepGain: number; /** Influences the experience gained for each ability when the player completes work for a Faction. */ FactionWorkExpGain: number; - /** Influences how much rep the player gains when performing work for a faction. */ + /** Influences how much rep the player gains when performing work for a faction or donating to it. */ FactionWorkRepGain: number; /** Influences how much it costs to unlock the stock market's 4S Market Data API */ FourSigmaMarketDataApiCost: number;