diff --git a/core/src/com/unciv/logic/map/MapUnit.kt b/core/src/com/unciv/logic/map/MapUnit.kt index ecccbaa6cf..b4e4820545 100644 --- a/core/src/com/unciv/logic/map/MapUnit.kt +++ b/core/src/com/unciv/logic/map/MapUnit.kt @@ -170,7 +170,8 @@ class MapUnit { if (name == Constants.worker && getTile().improvementInProgress != null) return false if (hasUnique("Can construct roads") && currentTile.improvementInProgress=="Road") return false if (isFortified()) return false - if (action==Constants.unitActionSleep || action == Constants.unitActionAutomation) return false + if (action==Constants.unitActionExplore || action==Constants.unitActionSleep + || action == Constants.unitActionAutomation) return false return true }