DOC: Add CorporationDivisions multiplier to BitNodeMultipliers API interface (#798)

This commit is contained in:
Caldwell 2023-09-12 10:30:19 +02:00 committed by GitHub
parent a6ff0d3e14
commit d2b3659512
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

@ -157,7 +157,7 @@ export class BitNodeMultipliers {
/** Influences profits from corporation dividends and selling shares. */
CorporationSoftcap = 1;
/** Influences number of divisions a corporation can have. */
/** Influences the amount of divisions a corporation can have have at the same time*/
CorporationDivisions = 1;
constructor(a: PartialRecord<keyof BitNodeMultipliers, number> = {}) {

@ -632,6 +632,8 @@ interface BitNodeMultipliers {
CompanyWorkExpGain: number;
/** Influences how much money the player earns when completing working their job. */
CompanyWorkMoney: number;
/** Influences the amount of divisions a corporation can have have at the same time*/
CorporationDivisions: number;
/** Influences the money gain from dividends of corporations created by the player. */
CorporationSoftcap: number;
/** Influences the valuation of corporations created by the player. */