diff --git a/buildSrc/src/main/kotlin/BuildConfig.kt b/buildSrc/src/main/kotlin/BuildConfig.kt index 598ba17a80..f97359e139 100644 --- a/buildSrc/src/main/kotlin/BuildConfig.kt +++ b/buildSrc/src/main/kotlin/BuildConfig.kt @@ -4,8 +4,8 @@ package com.unciv.build object BuildConfig { const val kotlinVersion = "1.8.21" const val appName = "Unciv" - const val appCodeNumber = 917 - const val appVersion = "4.8.9" + const val appCodeNumber = 918 + const val appVersion = "4.8.9-patch1" const val gdxVersion = "1.11.0" const val ktorVersion = "2.2.3" diff --git a/core/src/com/unciv/UncivGame.kt b/core/src/com/unciv/UncivGame.kt index fc1b262212..e88415fb2d 100644 --- a/core/src/com/unciv/UncivGame.kt +++ b/core/src/com/unciv/UncivGame.kt @@ -536,7 +536,7 @@ open class UncivGame(val isConsoleMode: Boolean = false) : Game(), PlatformSpeci companion object { //region AUTOMATICALLY GENERATED VERSION DATA - DO NOT CHANGE THIS REGION, INCLUDING THIS COMMENT - val VERSION = Version("4.8.9", 917) + val VERSION = Version("4.8.9-patch1", 918) //endregion lateinit var Current: UncivGame diff --git a/docs/Modders/uniques.md b/docs/Modders/uniques.md index 1fd0410640..d0bdb3efb4 100644 --- a/docs/Modders/uniques.md +++ b/docs/Modders/uniques.md @@ -5,11 +5,6 @@ Simple unique parameters are explained by mouseover. Complex parameters are expl Uniques that have immediate, one-time effects. These can be added to techs to trigger when researched, to policies to trigger when adopted, to eras to trigger when reached, to buildings to trigger when built. Alternatively, you can add a TriggerCondition to them to make them into Global uniques that activate upon a specific event.They can also be added to units to grant them the ability to trigger this effect as an action, which can be modified with UnitActionModifier and UnitTriggerCondition conditionals. -??? example "Gain a free [buildingName] [cityFilter]" - Example: "Gain a free [Library] [in all cities]" - - Applicable to: Triggerable, Global - ??? example "Free [unit] appears" Example: "Free [Musketman] appears" @@ -470,6 +465,11 @@ Simple unique parameters are explained by mouseover. Complex parameters are expl Applicable to: Global, Unit +??? example "Gain a free [buildingName] [cityFilter]" + Example: "Gain a free [Library] [in all cities]" + + Applicable to: Global + ??? example "[relativeAmount]% maintenance cost for buildings [cityFilter]" Example: "[+20]% maintenance cost for buildings [in all cities]"