From e872f5ade41dc62f82b29b92577c08cf37ecdf30 Mon Sep 17 00:00:00 2001 From: Yair Morgenstern Date: Tue, 28 Nov 2023 13:51:34 +0200 Subject: [PATCH] Resolves #10601 - Defeated (no units/cities) hotseat multiplayer no longer appears for turns ("player X ready") --- core/src/com/unciv/logic/GameInfo.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/com/unciv/logic/GameInfo.kt b/core/src/com/unciv/logic/GameInfo.kt index 2a848491e5..30c535ae34 100644 --- a/core/src/com/unciv/logic/GameInfo.kt +++ b/core/src/com/unciv/logic/GameInfo.kt @@ -365,8 +365,8 @@ class GameInfo : IsPartOfGameInfoSerialization, HasGameInfoSerializationVersion // We process player automatically if: while (isSimulation() || // simulation is active player.isAI() || // or player is AI - isOnline && (player.isDefeated() || // or player is online defeated - player.isSpectator())) // or player is online spectator + player.isDefeated() || + isOnline && player.isSpectator()) // or player is online spectator { // Starting preparations