diff --git a/core/src/com/unciv/models/ruleset/tech/Technology.kt b/core/src/com/unciv/models/ruleset/tech/Technology.kt index 8a9a6e4e14..a6bc53a109 100644 --- a/core/src/com/unciv/models/ruleset/tech/Technology.kt +++ b/core/src/com/unciv/models/ruleset/tech/Technology.kt @@ -56,7 +56,7 @@ class Technology: RulesetObject() { if (enabledUnits.any()) { lineList += "{Units enabled}: " for (unit in enabledUnits) - lineList += " * " + unit.name.tr() + " (" + unit.getShortDescription() + ")" + lineList += " • " + unit.name.tr() + " (" + unit.getShortDescription() + ")" } val enabledBuildings = getEnabledBuildings(ruleset, viewingCiv) @@ -65,14 +65,14 @@ class Technology: RulesetObject() { if (regularBuildings.any()) { lineList += "{Buildings enabled}: " for (building in regularBuildings) - lineList += "* " + building.name.tr() + " (" + building.getShortDescription() + ")" + lineList += " • " + building.name.tr() + " (" + building.getShortDescription() + ")" } val wonders = enabledBuildings.filter { it.isAnyWonder() } if (wonders.any()) { lineList += "{Wonders enabled}: " for (wonder in wonders) - lineList += " * " + wonder.name.tr() + " (" + wonder.getShortDescription() + ")" + lineList += " • " + wonder.name.tr() + " (" + wonder.getShortDescription() + ")" } for (obj in getObsoletedObjects(ruleset, viewingCiv))