diff --git a/core/src/com/unciv/models/ruleset/Victory.kt b/core/src/com/unciv/models/ruleset/Victory.kt index d23c588b35..fb735c793b 100644 --- a/core/src/com/unciv/models/ruleset/Victory.kt +++ b/core/src/com/unciv/models/ruleset/Victory.kt @@ -128,7 +128,7 @@ class Milestone(val uniqueDescription: String, private val parentVictory: Victor } private fun getMilestoneButton(text: String, achieved: Boolean): TextButton { - val textButton = text.toTextButton() + val textButton = text.toTextButton(hideIcons = true) if (achieved) textButton.color = Color.GREEN else textButton.color = Color.GRAY return textButton diff --git a/docs/Modders/uniques.md b/docs/Modders/uniques.md index 114eb34a82..2f97f165b4 100644 --- a/docs/Modders/uniques.md +++ b/docs/Modders/uniques.md @@ -2911,6 +2911,7 @@ Simple unique parameters are explained by mouseover. Complex parameters are expl Applicable to: Conditional ??? example "<when between [amount] and [amount] Happiness>" + 'Between' is inclusive - so 'between 1 and 5' includes 1 and 5. Example: "<when between [3] and [3] Happiness>" Applicable to: Conditional @@ -3048,7 +3049,7 @@ Simple unique parameters are explained by mouseover. Complex parameters are expl Applicable to: Conditional ??? example "<when between [amount] and [amount] [stat/resource]>" - Stats refers to the accumulated stat, not stat-per-turn + Stats refers to the accumulated stat, not stat-per-turn. 'Between' is inclusive - so 'between 1 and 5' includes 1 and 5. Example: "<when between [3] and [3] [Culture]>" This unique's effect can be modified with <(modified by game speed)> @@ -3105,6 +3106,7 @@ Simple unique parameters are explained by mouseover. Complex parameters are expl Applicable to: Conditional ??? example "<in cities with between [amount] and [amount] [populationFilter]>" + 'Between' is inclusive - so 'between 1 and 5' includes 1 and 5. Example: "<in cities with between [3] and [3] [Followers of this Religion]>" Applicable to: Conditional @@ -3251,6 +3253,7 @@ Simple unique parameters are explained by mouseover. Complex parameters are expl Applicable to: Conditional ??? example "<when number of [countable] is between [countable] and [countable]>" + 'Between' is inclusive - so 'between 1 and 5' includes 1 and 5. Example: "<when number of [1000] is between [1000] and [1000]>" Applicable to: Conditional