reduce port spawns

This commit is contained in:
1brucben
2025-06-02 17:23:19 +02:00
parent 23cdd00537
commit a73ba83191
+1 -1
View File
@@ -276,7 +276,7 @@ export class DefaultConfig implements Config {
return 10000 + 150 * Math.pow(dist, 1.1);
}
tradeShipSpawnRate(numberOfPorts: number): number {
return Math.round(10 * Math.pow(numberOfPorts, 0.3));
return Math.round(10 * Math.pow(numberOfPorts, 0.35));
}
unitInfo(type: UnitType): UnitInfo {