CORPORATION: improve State description (#778)

This commit is contained in:
Caldwell
2023-09-12 07:25:51 +02:00
committed by GitHub
parent bba2ccd83a
commit 624a0a5b02
4 changed files with 17 additions and 9 deletions

View File

@@ -7531,7 +7531,11 @@ interface CorporationInfo {
dividendTax: number;
/** Your earnings as a shareholder per second this cycle */
dividendEarnings: number;
/** State of the corporation. Possible states are START, PURCHASE, PRODUCTION, EXPORT, SALE. */
/** The next state to be processed.
*
* I.e. when the state is PURCHASE, it means purchasing will occur during the next state transition.
*
* Possible states are START, PURCHASE, PRODUCTION, EXPORT, SALE. */
state: string;
/** Array of all division names */
divisions: string[];