diff --git a/core/src/com/unciv/logic/map/MapUnit.kt b/core/src/com/unciv/logic/map/MapUnit.kt index eedc6ab7b1..d89a41c2c0 100644 --- a/core/src/com/unciv/logic/map/MapUnit.kt +++ b/core/src/com/unciv/logic/map/MapUnit.kt @@ -500,7 +500,7 @@ class MapUnit : IsPartOfGameInfoSerialization { return true if (hasUnique(UniqueType.InvisibleToNonAdjacent)) return getTile().getTilesInDistance(1).none { - it.getOwner() == to || it.getUnits().any { unit -> unit.owner == to.civName } + it.getUnits().any { unit -> unit.owner == to.civName } } return false }