diff --git a/core/src/com/unciv/ui/cityscreen/ConstructionInfoTable.kt b/core/src/com/unciv/ui/cityscreen/ConstructionInfoTable.kt index bd16b787c9..f24c8e7e2f 100644 --- a/core/src/com/unciv/ui/cityscreen/ConstructionInfoTable.kt +++ b/core/src/com/unciv/ui/cityscreen/ConstructionInfoTable.kt @@ -23,7 +23,6 @@ import com.unciv.ui.utils.extensions.darken import com.unciv.ui.utils.extensions.disable import com.unciv.ui.utils.extensions.onClick import com.unciv.ui.utils.extensions.toTextButton -import com.unciv.utils.Log class ConstructionInfoTable(val cityScreen: CityScreen): Table() { private val selectedConstructionTable = Table() @@ -95,7 +94,7 @@ class ConstructionInfoTable(val cityScreen: CityScreen): Table() { if (construction is Building && cityConstructions.isBuilt(construction.name) && construction.isSellable()) { val sellAmount = cityScreen.city.getGoldForSellingBuilding(construction.name) - val sellText = "{Sell} [$sellAmount] " + Fonts.gold + val sellText = "{Sell} $sellAmount " + Fonts.gold val sellBuildingButton = sellText.toTextButton() row() add(sellBuildingButton).padTop(5f).colspan(2).center()