allow name to be placed on shore tiles, this prevents rivers from bisecting player names causing them to be too small

This commit is contained in:
evanpelle
2026-01-15 16:16:33 -08:00
parent dbb5eb5993
commit e1d4b9a00e
+1
View File
@@ -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);
}