CORPORATION: Expose production limit of material and product (#2330)

This commit is contained in:
Ante
2025-10-01 18:04:39 +10:00
committed by GitHub
parent 060e929b68
commit f9a6cc841e
7 changed files with 74 additions and 0 deletions

View File

@@ -9971,6 +9971,8 @@ interface Product {
designInvestment: number;
/** How much warehouse space is occupied per unit of this product */
size: number;
/** A limit on the maximum amount to produce per second */
productionLimit: number | null;
}
/**
@@ -10004,6 +10006,8 @@ interface Material {
desiredSellAmount: string | number;
/** Export orders */
exports: Export[];
/** A limit on the maximum amount to produce per second */
productionLimit: number | null;
}
/**