diff --git a/core/src/com/unciv/logic/map/TileInfo.kt b/core/src/com/unciv/logic/map/TileInfo.kt index 863f830e46..b289ea5076 100644 --- a/core/src/com/unciv/logic/map/TileInfo.kt +++ b/core/src/com/unciv/logic/map/TileInfo.kt @@ -315,7 +315,7 @@ open class TileInfo { improvement.hasUnique("Can also be built on tiles adjacent to fresh water") && isAdjacentToFreshwater -> true "Can only be built on Coastal tiles" in improvement.uniques && isCoastalTile() -> true - else -> getTileResource().improvement == improvement.name && resourceIsVisible + else -> resourceIsVisible && getTileResource().improvement == improvement.name } }