From 84727155093effb4c115619b4cfdf137c8e4ce52 Mon Sep 17 00:00:00 2001 From: Yair Morgenstern Date: Thu, 18 Mar 2021 13:13:31 +0200 Subject: [PATCH] Resolved #3614 - tileFilter works with natural wonders --- core/src/com/unciv/logic/map/TileInfo.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/core/src/com/unciv/logic/map/TileInfo.kt b/core/src/com/unciv/logic/map/TileInfo.kt index 77095a2360..4848783454 100644 --- a/core/src/com/unciv/logic/map/TileInfo.kt +++ b/core/src/com/unciv/logic/map/TileInfo.kt @@ -399,6 +399,7 @@ open class TileInfo { || civInfo != null && hasViewableResource(civInfo) && resource == filter || filter == "Water" && isWater || filter == "Land" && isLand + || filter == naturalWonder } fun hasImprovementInProgress() = improvementInProgress != null