4.6.9-patch2

This commit is contained in:
Yair Morgenstern 2023-05-07 09:57:19 +03:00
parent 7b5ed07805
commit ade3af7729
3 changed files with 3 additions and 7 deletions

View File

@ -3,8 +3,8 @@ package com.unciv.build
object BuildConfig {
const val kotlinVersion = "1.8.0"
const val appName = "Unciv"
const val appCodeNumber = 860
const val appVersion = "4.6.9-patch1"
const val appCodeNumber = 861
const val appVersion = "4.6.9-patch2"
const val gdxVersion = "1.11.0"
const val roboVMVersion = "2.3.1"

View File

@ -531,7 +531,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.6.9-patch1", 860)
val VERSION = Version("4.6.9-patch2", 861)
//endregion
lateinit var Current: UncivGame

View File

@ -775,10 +775,6 @@ class WorldMapHolder(
tileGroup.layerCityButton.isTransform = true
tileGroup.layerCityButton.setScale(clampedCityButtonZoom)
}
for (actor in unitActionOverlays) {
if (actor is Group) actor.isTransform = true
actor.setScale(clampedCityButtonZoom)
}
}
}