CORP: Add maxProducts property to division, consolidate maxProducts logic (#551)

This commit is contained in:
Kateract
2023-06-01 12:20:54 -07:00
committed by GitHub
parent 0d6015104e
commit 10215a924c
7 changed files with 31 additions and 21 deletions

View File

@@ -7681,6 +7681,8 @@ interface Division {
products: string[];
/** Whether the industry this division is in is capable of making products */
makesProducts: boolean;
/** How many products this division can support */
maxProducts: number;
}
/**