From 82bfae981feefa59c4128cc564d11a365530534b Mon Sep 17 00:00:00 2001 From: evanpelle Date: Mon, 1 Jun 2026 11:22:34 -0700 Subject: [PATCH] Allow shallow ocean tiles in name box grid for larger island player names --- src/client/hud/NameBoxCalculator.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/client/hud/NameBoxCalculator.ts b/src/client/hud/NameBoxCalculator.ts index 60f07c747..811f499f1 100644 --- a/src/client/hud/NameBoxCalculator.ts +++ b/src/client/hud/NameBoxCalculator.ts @@ -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); }