Skip to content

Commit

Permalink
Fix free populatoion buildings not working when settling cities (yair…
Browse files Browse the repository at this point in the history
  • Loading branch information
SeventhM authored Feb 26, 2025
1 parent 3e6cb2c commit 7fbdffe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/com/unciv/logic/city/managers/CityFounder.kt
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,6 @@ class CityFounder {

val startingEra = civInfo.gameInfo.gameParameters.startingEra

addStartingBuildings(city, civInfo, startingEra)

city.expansion.reset()

city.tryUpdateRoadStatus()
Expand Down Expand Up @@ -86,6 +84,8 @@ class CityFounder {
triggerCitiesSettledNearOtherCiv(city)
civInfo.gameInfo.cityDistances.setDirty()

addStartingBuildings(city, civInfo, startingEra)

for (unique in civInfo.getTriggeredUniques(UniqueType.TriggerUponFoundingCity,
StateForConditionals(civInfo, city, unit)
))
Expand Down

0 comments on commit 7fbdffe

Please sign in to comment.