From 5dae652c0b10642506fc636469d9c0c99dd9441d Mon Sep 17 00:00:00 2001 From: Duan Tao Date: Wed, 26 Dec 2018 10:32:50 +0800 Subject: [PATCH] Humanism should increase happiness, instead of science. --- core/src/com/unciv/models/gamebasics/Building.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/com/unciv/models/gamebasics/Building.kt b/core/src/com/unciv/models/gamebasics/Building.kt index e29f883d3a..99bc3fdfe9 100644 --- a/core/src/com/unciv/models/gamebasics/Building.kt +++ b/core/src/com/unciv/models/gamebasics/Building.kt @@ -129,7 +129,7 @@ class Building : NamedStats(), IConstruction{ stats.science += 1f if (adoptedPolicies.contains("Humanism") && hashSetOf("University", "Observatory", "Public School").contains(name)) - stats.science += 1f + stats.happiness += 1f if (adoptedPolicies.contains("Theocracy") && name == "Temple") percentStatBonus = Stats().apply { gold=10f }