diff --git a/core/src/com/unciv/models/ruleset/Nation.kt b/core/src/com/unciv/models/ruleset/Nation.kt index 3a433d3b82..96915a2cbb 100644 --- a/core/src/com/unciv/models/ruleset/Nation.kt +++ b/core/src/com/unciv/models/ruleset/Nation.kt @@ -39,6 +39,7 @@ class Nation : INamed { var uniqueName = "" var uniques = HashSet() val uniqueObjects: List by lazy { uniques.map { Unique(it) } } + var uniqueText = "" var innerColor: List? = null var startBias = ArrayList() @@ -92,8 +93,13 @@ class Nation : INamed { } if (uniqueName != "") textList += uniqueName.tr() + ":" - textList += " " + uniques.joinToString(", ") { it.tr() } - textList += "" + if (uniqueText != "") { + textList += " " + uniqueText.tr() + } + else { + textList += " " + uniques.joinToString(", ") { it.tr() } + textList += "" + } if (startBias.isNotEmpty()) { textList += "Start bias:".tr() + startBias.joinToString(", ", " ") { it.tr() }