2x is enough

This commit is contained in:
Azgaar 2021-08-15 11:17:37 +03:00
parent 00f48dbcdb
commit 11991cc403

View file

@ -14,7 +14,7 @@ window.Trade = (function () {
const totalProduction = d3.sum(Object.values(produced)); const totalProduction = d3.sum(Object.values(produced));
let score = Math.round(totalProduction - population); let score = Math.round(totalProduction - population);
if (capital) score *= 2; if (capital) score *= 2;
if (port) score *= 3; if (port) score *= 2;
return {i, score}; return {i, score};
}); });