diff --git a/core/src/com/unciv/logic/civilization/Notification.kt b/core/src/com/unciv/logic/civilization/Notification.kt index b5d6920aa2..6d279d4bb0 100644 --- a/core/src/com/unciv/logic/civilization/Notification.kt +++ b/core/src/com/unciv/logic/civilization/Notification.kt @@ -32,7 +32,7 @@ data class LocationAction(var locations: ArrayList = ArrayList()) : Not if (locations.isNotEmpty()) { var index = locations.indexOf(worldScreen.tileMapHolder.selectedTile?.position) index = ++index % locations.size // cycle through locations - worldScreen.tileMapHolder.setCenterPosition(locations[index]) + worldScreen.tileMapHolder.setCenterPosition(locations[index], selectUnit = false) } }