From 11991cc403e5975be6c0f936ef2f19b038ae00ba Mon Sep 17 00:00:00 2001 From: Azgaar Date: Sun, 15 Aug 2021 11:17:37 +0300 Subject: [PATCH] 2x is enough --- modules/trade-generator.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/trade-generator.js b/modules/trade-generator.js index ce3d2c90..c2c3e32b 100644 --- a/modules/trade-generator.js +++ b/modules/trade-generator.js @@ -14,7 +14,7 @@ window.Trade = (function () { const totalProduction = d3.sum(Object.values(produced)); let score = Math.round(totalProduction - population); if (capital) score *= 2; - if (port) score *= 3; + if (port) score *= 2; return {i, score}; });