diff --git a/markdown/bitburner.ganggeninfo.md b/markdown/bitburner.ganggeninfo.md index a2653b22a..ba7e4828d 100644 --- a/markdown/bitburner.ganggeninfo.md +++ b/markdown/bitburner.ganggeninfo.md @@ -23,7 +23,7 @@ interface GangGenInfo | [respect](./bitburner.ganggeninfo.respect.md) | | number | Gang's respect | | [respectForNextRecruit](./bitburner.ganggeninfo.respectfornextrecruit.md) | | number | Amount of Respect needed for next gang recruit, if possible | | [respectGainRate](./bitburner.ganggeninfo.respectgainrate.md) | | number | Respect earned per game cycle | -| [territory](./bitburner.ganggeninfo.territory.md) | | number | Amount of territory held | +| [territory](./bitburner.ganggeninfo.territory.md) | | number | Amount of territory held, in the range 0-1 | | [territoryClashChance](./bitburner.ganggeninfo.territoryclashchance.md) | | number | Clash chance | | [territoryWarfareEngaged](./bitburner.ganggeninfo.territorywarfareengaged.md) | | boolean | Indicating if territory clashes are enabled | | [wantedLevel](./bitburner.ganggeninfo.wantedlevel.md) | | number | Gang's wanted level | diff --git a/markdown/bitburner.ganggeninfo.territory.md b/markdown/bitburner.ganggeninfo.territory.md index 9c16925a8..65f4af5a9 100644 --- a/markdown/bitburner.ganggeninfo.territory.md +++ b/markdown/bitburner.ganggeninfo.territory.md @@ -4,7 +4,7 @@ ## GangGenInfo.territory property -Amount of territory held +Amount of territory held, in the range 0-1 **Signature:** diff --git a/markdown/bitburner.gangotherinfoobject.md b/markdown/bitburner.gangotherinfoobject.md index 9191e75a1..b6d9b37c2 100644 --- a/markdown/bitburner.gangotherinfoobject.md +++ b/markdown/bitburner.gangotherinfoobject.md @@ -16,5 +16,5 @@ interface GangOtherInfoObject | Property | Modifiers | Type | Description | | --- | --- | --- | --- | | [power](./bitburner.gangotherinfoobject.power.md) | | number | Gang power | -| [territory](./bitburner.gangotherinfoobject.territory.md) | | number | Gang territory, in decimal form | +| [territory](./bitburner.gangotherinfoobject.territory.md) | | number | Gang territory, in the range 0-1 | diff --git a/markdown/bitburner.gangotherinfoobject.territory.md b/markdown/bitburner.gangotherinfoobject.territory.md index 38a74f7f4..2c440e8e2 100644 --- a/markdown/bitburner.gangotherinfoobject.territory.md +++ b/markdown/bitburner.gangotherinfoobject.territory.md @@ -4,7 +4,7 @@ ## GangOtherInfoObject.territory property -Gang territory, in decimal form +Gang territory, in the range 0-1 **Signature:** diff --git a/src/ScriptEditor/NetscriptDefinitions.d.ts b/src/ScriptEditor/NetscriptDefinitions.d.ts index 4bdb62af4..9dff41ac8 100644 --- a/src/ScriptEditor/NetscriptDefinitions.d.ts +++ b/src/ScriptEditor/NetscriptDefinitions.d.ts @@ -830,7 +830,7 @@ interface GangGenInfo { respectGainRate: number; /** Amount of Respect needed for next gang recruit, if possible */ respectForNextRecruit: number; - /** Amount of territory held */ + /** Amount of territory held, in the range 0-1 */ territory: number; /** Clash chance */ territoryClashChance: number; @@ -848,7 +848,7 @@ interface GangGenInfo { interface GangOtherInfoObject { /** Gang power */ power: number; - /** Gang territory, in decimal form */ + /** Gang territory, in the range 0-1 */ territory: number; }