diff --git a/core/src/com/unciv/ui/civilopedia/CivilopediaScreen.kt b/core/src/com/unciv/ui/civilopedia/CivilopediaScreen.kt index fafa649b74..5d2d5c5994 100644 --- a/core/src/com/unciv/ui/civilopedia/CivilopediaScreen.kt +++ b/core/src/com/unciv/ui/civilopedia/CivilopediaScreen.kt @@ -185,7 +185,7 @@ class CivilopediaScreen( val curGameInfo = game.gameInfo val religionEnabled = if (curGameInfo != null) curGameInfo.isReligionEnabled() else ruleset.beliefs.isNotEmpty() - val victoryTypes = if (curGameInfo != null) curGameInfo.gameParameters.victoryTypes else emptyList() + val victoryTypes = if (curGameInfo != null) curGameInfo.gameParameters.victoryTypes else ruleset.victories.keys fun shouldBeDisplayed(obj: IHasUniques): Boolean { return when {