mirror of
https://github.com/openfrontio/OpenFrontIO.git
synced 2026-07-05 05:26:07 +00:00
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:
@@ -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}`,
|
||||
|
||||
Reference in New Issue
Block a user