We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4308f9 commit 32e3cb2Copy full SHA for 32e3cb2
core/src/com/unciv/logic/city/CityInfo.kt
@@ -76,13 +76,14 @@ class CityInfo {
76
civInfo.cities = civInfo.cities.toMutableList().apply { add(this@CityInfo) }
77
civInfo.addNotification("[$name] has been founded!", cityLocation, Color.PURPLE)
78
79
- civInfo.policies.tryAddLegalismBuildings()
80
-
81
if (civInfo.cities.size == 1) {
82
cityConstructions.addBuilding("Palace")
83
cityConstructions.currentConstruction = Constants.worker // Default for first city only!
84
}
85
+ if (civInfo.policies.isAdopted("Legalism"))
+ civInfo.policies.tryAddLegalismBuildings()
86
+
87
expansion.reset()
88
89
val tile = getCenterTile()
0 commit comments