mirror of
https://github.com/yairm210/Unciv.git
synced 2025-02-24 05:31:22 +07:00
Show number of global followers in Religion Overview (#6654)
This commit is contained in:
parent
1ac2ecb9e8
commit
9b5f70e868
@ -149,8 +149,11 @@ class ReligionOverviewTab(
|
||||
statsTable.add(cityName.toLabel()).right().row()
|
||||
}
|
||||
}
|
||||
val manager = religion.getFounder().religionManager
|
||||
statsTable.add("Cities following this religion:".toLabel())
|
||||
statsTable.add(religion.getFounder().religionManager.numberOfCitiesFollowingThisReligion().toLabel()).right().row()
|
||||
statsTable.add(manager.numberOfCitiesFollowingThisReligion().toLabel()).right().row()
|
||||
statsTable.add("{Followers of this religion}:".toLabel())
|
||||
statsTable.add(manager.numberOfFollowersFollowingThisReligion("in all cities").toLabel()).right().row()
|
||||
|
||||
val minWidth = max(statsTable.minWidth, beliefsTable.minWidth) + 5
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user