4.3.12-patch1

This commit is contained in:
Yair Morgenstern 2022-12-25 00:02:55 +02:00
parent f4c91126bc
commit b7b6bbd3f3
3 changed files with 3 additions and 3 deletions

View File

@ -3,8 +3,8 @@ package com.unciv.build
object BuildConfig { object BuildConfig {
const val kotlinVersion = "1.7.21" const val kotlinVersion = "1.7.21"
const val appName = "Unciv" const val appName = "Unciv"
const val appCodeNumber = 782 const val appCodeNumber = 783
const val appVersion = "4.3.12" const val appVersion = "4.3.12-patch1"
const val gdxVersion = "1.11.0" const val gdxVersion = "1.11.0"
const val roboVMVersion = "2.3.1" const val roboVMVersion = "2.3.1"

View File

@ -218,9 +218,9 @@ class DiplomacyScreen(
otherCiv.updateAllyCivForCityState() otherCiv.updateAllyCivForCityState()
var ally = otherCiv.getAllyCiv() var ally = otherCiv.getAllyCiv()
if (ally != null) { if (ally != null) {
val allyInfluence = otherCiv.getDiplomacyManager(ally).getInfluence().toInt()
if (!viewingCiv.knows(ally)) if (!viewingCiv.knows(ally))
ally = "Unknown civilization" ally = "Unknown civilization"
val allyInfluence = otherCiv.getDiplomacyManager(ally).getInfluence().toInt()
diplomacyTable diplomacyTable
.add("Ally: [$ally] with [$allyInfluence] Influence".toLabel()) .add("Ally: [$ally] with [$allyInfluence] Influence".toLabel())
.row() .row()

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 MiB

After

Width:  |  Height:  |  Size: 649 KiB