diff --git a/core/src/com/unciv/logic/city/CityConstructions.kt b/core/src/com/unciv/logic/city/CityConstructions.kt index 1010e4aead..5fcf4467a9 100644 --- a/core/src/com/unciv/logic/city/CityConstructions.kt +++ b/core/src/com/unciv/logic/city/CityConstructions.kt @@ -61,9 +61,10 @@ class CityConstructions { val currentConstructionSnapshot = currentConstruction // See below var result = currentConstructionSnapshot.tr() if (currentConstructionSnapshot!="" - && SpecialConstruction.getSpecialConstructions().none { it.name==currentConstructionSnapshot }) + && SpecialConstruction.getSpecialConstructions().none { it.name==currentConstructionSnapshot }) { result += ("\r\nCost " + getConstruction(currentConstruction).getProductionCost(cityInfo.civInfo).toString()).tr() - result += "\r\n" + turnsToConstruction(currentConstructionSnapshot ) + " {turns}".tr() + result += "\r\n" + turnsToConstruction(currentConstructionSnapshot) + " {turns}".tr() + } return result }