Fixed bug where all great people suddenly were scientists (#4582)

This commit is contained in:
Xander Lenstra
2021-07-21 09:28:48 +02:00
committed by GitHub
parent 3d13680602
commit 167d9705f7

View File

@ -13,9 +13,9 @@ class GreatPersonManager {
companion object { companion object {
val statToGreatPersonMapping = hashMapOf<Stat, String>( val statToGreatPersonMapping = hashMapOf<Stat, String>(
Stat.Science to "Great Scientist", Stat.Science to "Great Scientist",
Stat.Production to "Great Scientist", Stat.Production to "Great Engineer",
Stat.Gold to "Great Scientist", Stat.Gold to "Great Merchant",
Stat.Culture to "Great Scientist", Stat.Culture to "Great Artist",
) )
} }