From df68ff75f8d597a3a2579e181d3489e1449b5503 Mon Sep 17 00:00:00 2001 From: Yair Morgenstern Date: Tue, 4 Feb 2020 09:06:41 +0200 Subject: [PATCH] Resolved #1827 - can no longer see other (current) player's city production in multiplayer --- core/src/com/unciv/logic/map/TileInfo.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/com/unciv/logic/map/TileInfo.kt b/core/src/com/unciv/logic/map/TileInfo.kt index a035f11f17..aed50c5876 100644 --- a/core/src/com/unciv/logic/map/TileInfo.kt +++ b/core/src/com/unciv/logic/map/TileInfo.kt @@ -298,7 +298,7 @@ open class TileInfo { var cityString = city.name if(isViewableToPlayer) cityString += " ("+city.health+")" lineList += cityString - if(UncivGame.Current.viewEntireMapForDebug || city.civInfo.isCurrentPlayer()) + if(UncivGame.Current.viewEntireMapForDebug || city.civInfo == viewingCiv) lineList += city.cityConstructions.getProductionForTileInfo() } lineList += baseTerrain.tr()