update maps: remove small lakes as it breaks encirclement. More money… (#188)

… more frequent trade ships, lakes prevent encirclement, warships start
at full health
This commit is contained in:
evanpelle
2025-03-08 16:45:23 -08:00
committed by GitHub
parent de584329b8
commit 4281095666
20 changed files with 427 additions and 1021 deletions
+1 -1
View File
@@ -386,7 +386,7 @@ function removeSmallIslands(map: Terrain[][]) {
function removeSmallLakes(mapName: string, map: Terrain[][]) {
const visited = new Set<string>();
const min_lake_size = 30; // Using same size threshold as islands
const min_lake_size = 200;
console.log(
`${mapName}: removing small lakes ${map.length}, ${map[0].length}`,