diff --git a/core/src/com/unciv/ui/worldscreen/WorldScreen.kt b/core/src/com/unciv/ui/worldscreen/WorldScreen.kt index 5c39824f38..bbc4552f8f 100644 --- a/core/src/com/unciv/ui/worldscreen/WorldScreen.kt +++ b/core/src/com/unciv/ui/worldscreen/WorldScreen.kt @@ -335,7 +335,7 @@ class WorldScreen(val gameInfo: GameInfo, val viewingCiv:CivilizationInfo) : Bas val latestGame = OnlineMultiplayer().tryDownloadGame(gameInfo.gameId) // if we find the current player didn't change, don't update - if (gameInfo.currentPlayer != latestGame.currentPlayer) { + if (gameInfo.currentPlayer == latestGame.currentPlayer) { Gdx.app.postRunnable { loadingGamePopup.close() } shouldUpdate = true return