diff --git a/core/src/com/unciv/logic/map/UnitMovementAlgorithms.kt b/core/src/com/unciv/logic/map/UnitMovementAlgorithms.kt index 6b469a2060..7bfc4df2e6 100644 --- a/core/src/com/unciv/logic/map/UnitMovementAlgorithms.kt +++ b/core/src/com/unciv/logic/map/UnitMovementAlgorithms.kt @@ -344,7 +344,7 @@ class UnitMovementAlgorithms(val unit:MapUnit) { if (tile.isOcean && !unit.civInfo.tech.embarkedUnitsCanEnterOcean) return false } - if (tile.isOcean && unit.civInfo.tech.wayfinding) { // Apparently all Polynesian naval units can enter oceans + if (tile.isOcean && !unit.civInfo.tech.wayfinding) { // Apparently all Polynesian naval units can enter oceans if (unit.cannotEnterOceanTiles) return false if (unit.cannotEnterOceanTilesUntilAstronomy && !unit.civInfo.tech.isResearched("Astronomy")) diff --git a/core/src/com/unciv/models/ruleset/Nation.kt b/core/src/com/unciv/models/ruleset/Nation.kt index 6a117cc41b..6d8ce68bf4 100644 --- a/core/src/com/unciv/models/ruleset/Nation.kt +++ b/core/src/com/unciv/models/ruleset/Nation.kt @@ -96,11 +96,11 @@ class Nation : INamed { textList += "" } -// if (uniqueName!="") { -// textList += uniqueName.tr() + ":" -// textList += " " + uniques.joinToString(", ").tr() -// textList += "" -// } + else { + if (uniqueName != "") textList += uniqueName.tr() + ":" + textList += " " + uniques.joinToString(", ").tr() + textList += "" + } if (startBias.isNotEmpty()) { textList += "Start bias:".tr() + startBias.joinToString(", ", " ") { it.tr() } textList += ""