From e1d4b9a00e0ef09315b3138463de3771b5e4c377 Mon Sep 17 00:00:00 2001 From: evanpelle Date: Thu, 15 Jan 2026 16:16:33 -0800 Subject: [PATCH] allow name to be placed on shore tiles, this prevents rivers from bisecting player names causing them to be too small --- src/client/graphics/NameBoxCalculator.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/client/graphics/NameBoxCalculator.ts b/src/client/graphics/NameBoxCalculator.ts index 67f21916c..fa2165512 100644 --- a/src/client/graphics/NameBoxCalculator.ts +++ b/src/client/graphics/NameBoxCalculator.ts @@ -92,6 +92,7 @@ export function createGrid( const tile = game.ref(cell.x, cell.y); grid[x - scaledBoundingBox.min.x][y - scaledBoundingBox.min.y] = game.isLake(tile) || + game.isShore(tile) || game.owner(tile) === player || game.hasFallout(tile); }