diff --git a/buildSrc/src/main/kotlin/BuildConfig.kt b/buildSrc/src/main/kotlin/BuildConfig.kt index 7e172915b9..f5a00d357d 100644 --- a/buildSrc/src/main/kotlin/BuildConfig.kt +++ b/buildSrc/src/main/kotlin/BuildConfig.kt @@ -3,8 +3,8 @@ package com.unciv.build object BuildConfig { const val kotlinVersion = "1.7.21" const val appName = "Unciv" - const val appCodeNumber = 782 - const val appVersion = "4.3.12" + const val appCodeNumber = 783 + const val appVersion = "4.3.12-patch1" const val gdxVersion = "1.11.0" const val roboVMVersion = "2.3.1" diff --git a/core/src/com/unciv/ui/trade/DiplomacyScreen.kt b/core/src/com/unciv/ui/trade/DiplomacyScreen.kt index 7fa0b0a0c1..884c91f77c 100644 --- a/core/src/com/unciv/ui/trade/DiplomacyScreen.kt +++ b/core/src/com/unciv/ui/trade/DiplomacyScreen.kt @@ -218,9 +218,9 @@ class DiplomacyScreen( otherCiv.updateAllyCivForCityState() var ally = otherCiv.getAllyCiv() if (ally != null) { + val allyInfluence = otherCiv.getDiplomacyManager(ally).getInfluence().toInt() if (!viewingCiv.knows(ally)) ally = "Unknown civilization" - val allyInfluence = otherCiv.getDiplomacyManager(ally).getInfluence().toInt() diplomacyTable .add("Ally: [$ally] with [$allyInfluence] Influence".toLabel()) .row() diff --git a/extraImages/Screenshots/WorldScreen.png b/extraImages/Screenshots/WorldScreen.png index 1f478edb7f..ce5b1a5d17 100644 Binary files a/extraImages/Screenshots/WorldScreen.png and b/extraImages/Screenshots/WorldScreen.png differ