From 67eb3a86e0d32563c7c9dfd51c1afcadb1fba4ee Mon Sep 17 00:00:00 2001 From: Duan Tao Date: Tue, 12 Mar 2019 22:18:30 +0800 Subject: [PATCH] Fix builds list in city screen. --- core/src/com/unciv/ui/cityscreen/CityInfoTable.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/com/unciv/ui/cityscreen/CityInfoTable.kt b/core/src/com/unciv/ui/cityscreen/CityInfoTable.kt index ae6ac04033..bb494e70a1 100644 --- a/core/src/com/unciv/ui/cityscreen/CityInfoTable.kt +++ b/core/src/com/unciv/ui/cityscreen/CityInfoTable.kt @@ -122,7 +122,7 @@ class CityInfoTable(private val cityScreen: CityScreen) : Table(CameraStageBaseS if (!otherBuildings.isEmpty()) { addTitle("Buildings") - for (building in wonders) addBuildingInfo(building) + for (building in otherBuildings) addBuildingInfo(building) } }