allow names to go on top of radiation

This commit is contained in:
evanpelle
2025-08-16 11:27:37 -07:00
parent 67ca96f4b7
commit 1f4f51e489
+3 -1
View File
@@ -91,7 +91,9 @@ export function createGrid(
if (game.isOnMap(cell)) {
const tile = game.ref(cell.x, cell.y);
grid[x - scaledBoundingBox.min.x][y - scaledBoundingBox.min.y] =
game.isLake(tile) || game.owner(tile) === player; // TODO: okay if lake
game.isLake(tile) ||
game.owner(tile) === player ||
game.hasFallout(tile);
}
}
}