From 64e79ffa0df27b7281d8b07b169fbebe01262e7a Mon Sep 17 00:00:00 2001 From: OptimizedForDensity <105244635+OptimizedForDensity@users.noreply.github.com> Date: Thu, 28 Jul 2022 16:00:31 -0400 Subject: [PATCH] Allow passable natural wonders (#7550) --- core/src/com/unciv/logic/map/UnitMovementAlgorithms.kt | 1 - 1 file changed, 1 deletion(-) diff --git a/core/src/com/unciv/logic/map/UnitMovementAlgorithms.kt b/core/src/com/unciv/logic/map/UnitMovementAlgorithms.kt index 342ed52dc9..ed228ae21b 100644 --- a/core/src/com/unciv/logic/map/UnitMovementAlgorithms.kt +++ b/core/src/com/unciv/logic/map/UnitMovementAlgorithms.kt @@ -666,7 +666,6 @@ class UnitMovementAlgorithms(val unit: MapUnit) { if (tile.isOcean && !unit.civInfo.tech.allUnitsCanEnterOcean) { // Apparently all Polynesian naval units can enter oceans if (!unitSpecificAllowOcean && unit.cannotEnterOceanTiles) return false } - if (tile.naturalWonder != null) return false if (!unit.canEnterForeignTerrain && !tile.canCivPassThrough(unit.civInfo)) return false