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
@@ -155,7 +155,7 @@ export class PlayerExecution implements Execution {
private isSurrounded(cluster: Set<TileRef>): boolean {
const enemyTiles = new Set<TileRef>();
for (const tr of cluster) {
if (this.mg.isOceanShore(tr) || this.mg.isOnEdgeOfMap(tr)) {
if (this.mg.isShore(tr) || this.mg.isOnEdgeOfMap(tr)) {
return false;
}
this.mg