Allow shallow ocean tiles in name box grid for larger island player names

This commit is contained in:
evanpelle
2026-06-01 11:22:34 -07:00
parent 8dfa2b4cd9
commit 82bfae981f
+1
View File
@@ -124,6 +124,7 @@ export function createGrid(
grid[x - scaledBoundingBox.min.x][y - scaledBoundingBox.min.y] =
game.isLake(tile) ||
game.isShore(tile) ||
(game.isOcean(tile) && game.magnitude(tile) < 10) ||
game.owner(tile) === player ||
game.hasFallout(tile);
}