diff --git a/src/ScriptEditor/NetscriptDefinitions.d.ts b/src/ScriptEditor/NetscriptDefinitions.d.ts index 620f834c3..e42295e10 100644 --- a/src/ScriptEditor/NetscriptDefinitions.d.ts +++ b/src/ScriptEditor/NetscriptDefinitions.d.ts @@ -7364,18 +7364,18 @@ export interface WarehouseAPI { ): void; /** * Limit Material Production. - * @param divisionName - Name of the division - * @param cityName - Name of the city - * @param materialName - Name of the material - * @param qty - Amount to limit to + * @param divisionName - Name of the division. + * @param cityName - Name of the city. + * @param materialName - Name of the material. + * @param qty - Amount to limit to. Pass a negative value to remove the limit instead. */ limitMaterialProduction(divisionName: string, cityName: string, materialName: string, qty: number): void; /** * Limit Product Production. - * @param divisionName - Name of the division - * @param cityName - Name of the city - * @param productName - Name of the product - * @param qty - Amount to limit to + * @param divisionName - Name of the division. + * @param cityName - Name of the city. + * @param productName - Name of the product. + * @param qty - Amount to limit to. Pass a negative value to remove the limit instead. */ limitProductProduction(divisionName: string, cityName: string, productName: string, qty: number): void; /**