diff --git a/core/src/com/unciv/logic/map/MapUnit.kt b/core/src/com/unciv/logic/map/MapUnit.kt index 52864239e9..617bc037c9 100644 --- a/core/src/com/unciv/logic/map/MapUnit.kt +++ b/core/src/com/unciv/logic/map/MapUnit.kt @@ -447,8 +447,10 @@ class MapUnit { fun endTurn() { doAction() - if (hasUnique(Constants.workerUnique) && getTile().improvementInProgress != null) workOnImprovement() - if (hasUnique("Can construct roads") && currentTile.improvementInProgress == "Road") workOnImprovement() + if (currentMovement > 0 && hasUnique(Constants.workerUnique) + && getTile().improvementInProgress != null) workOnImprovement() + if (currentMovement > 0 && hasUnique("Can construct roads") + && currentTile.improvementInProgress == "Road") workOnImprovement() if (currentMovement == getMaxMovement().toFloat() && isFortified()) { val currentTurnsFortified = getFortificationTurns() if (currentTurnsFortified < 2)