From 167d9705f77100ad719a2875f15ae4fd1ffc6358 Mon Sep 17 00:00:00 2001 From: Xander Lenstra <71121390+xlenstra@users.noreply.github.com> Date: Wed, 21 Jul 2021 09:28:48 +0200 Subject: [PATCH] Fixed bug where all great people suddenly were scientists (#4582) --- core/src/com/unciv/logic/civilization/GreatPersonManager.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/src/com/unciv/logic/civilization/GreatPersonManager.kt b/core/src/com/unciv/logic/civilization/GreatPersonManager.kt index 3e00d01f6c..1bb14c4d79 100644 --- a/core/src/com/unciv/logic/civilization/GreatPersonManager.kt +++ b/core/src/com/unciv/logic/civilization/GreatPersonManager.kt @@ -13,9 +13,9 @@ class GreatPersonManager { companion object { val statToGreatPersonMapping = hashMapOf( Stat.Science to "Great Scientist", - Stat.Production to "Great Scientist", - Stat.Gold to "Great Scientist", - Stat.Culture to "Great Scientist", + Stat.Production to "Great Engineer", + Stat.Gold to "Great Merchant", + Stat.Culture to "Great Artist", ) }