diff --git a/dist/bundle.js b/dist/bundle.js index 1a2baa38a..e24be22da 100644 --- a/dist/bundle.js +++ b/dist/bundle.js @@ -42828,8 +42828,7 @@ Industry.prototype.processProducts = function(marketCycles=1, corporation) { office.employeeProd[EmployeePositions.Operations] / total + office.employeeProd[EmployeePositions.Management] / total; } - prod.createProduct(marketCycles, ratio * Math.pow(total, 1)); - //prod.createProduct(marketCycles, ratio * Math.pow(total, 0.3)); + prod.createProduct(marketCycles, ratio * Math.pow(total, 0.3)); if (prod.prog >= 100) { prod.finishProduct(office.employeeProd, this); } diff --git a/src/CompanyManagement.js b/src/CompanyManagement.js index 2a6adfe23..0b2862ea5 100644 --- a/src/CompanyManagement.js +++ b/src/CompanyManagement.js @@ -1275,8 +1275,7 @@ Industry.prototype.processProducts = function(marketCycles=1, corporation) { office.employeeProd[EmployeePositions.Operations] / total + office.employeeProd[EmployeePositions.Management] / total; } - prod.createProduct(marketCycles, ratio * Math.pow(total, 1)); - //prod.createProduct(marketCycles, ratio * Math.pow(total, 0.3)); + prod.createProduct(marketCycles, ratio * Math.pow(total, 0.3)); if (prod.prog >= 100) { prod.finishProduct(office.employeeProd, this); }