diff --git a/core/src/com/unciv/logic/city/CityConstructions.kt b/core/src/com/unciv/logic/city/CityConstructions.kt index 53d5eed61e..1c0bd619ba 100644 --- a/core/src/com/unciv/logic/city/CityConstructions.kt +++ b/core/src/com/unciv/logic/city/CityConstructions.kt @@ -329,7 +329,7 @@ class CityConstructions { fun addToQueue(constructionName: String) { if (!isQueueFull()) { - if (isQueueEmpty() && currentConstruction == "Nothing") { + if (isQueueEmpty() && currentConstruction == "" || currentConstruction == "Nothing") { currentConstruction = constructionName currentConstructionIsUserSet = true } else