Skip to content

Commit e872f5a

Browse files
committed
Resolves yairm210#10601 - Defeated (no units/cities) hotseat multiplayer no longer appears for turns ("player X ready")
1 parent c3216e9 commit e872f5a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/src/com/unciv/logic/GameInfo.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -365,8 +365,8 @@ class GameInfo : IsPartOfGameInfoSerialization, HasGameInfoSerializationVersion
365365
// We process player automatically if:
366366
while (isSimulation() || // simulation is active
367367
player.isAI() || // or player is AI
368-
isOnline && (player.isDefeated() || // or player is online defeated
369-
player.isSpectator())) // or player is online spectator
368+
player.isDefeated() ||
369+
isOnline && player.isSpectator()) // or player is online spectator
370370
{
371371

372372
// Starting preparations

0 commit comments

Comments
 (0)