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}; });