From 629e2eb425b8c6dd71b473c7810c8c0b28de9a87 Mon Sep 17 00:00:00 2001 From: danielyxie Date: Sat, 3 Mar 2018 17:58:05 -0600 Subject: [PATCH] Removed dev/debugging parameters --- dist/bundle.js | 3 +-- src/CompanyManagement.js | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) 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); }