DOCUMENTATION: Clarify value of gang territory (#1978)

* DOCUMENTATION: Clarify decimal form of gang territory

* Update based on feedback
This commit is contained in:
catloversg
2025-03-01 03:45:36 +07:00
committed by GitHub
parent 2a544bbc15
commit f54f7b932c
5 changed files with 6 additions and 6 deletions

View File

@@ -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;
}