Resolves #10601 - Defeated (no units/cities) hotseat multiplayer no longer appears for turns ("player X ready")

This commit is contained in:
Yair Morgenstern 2023-11-28 13:51:34 +02:00
parent c3216e96eb
commit e872f5ade4

View File

@ -365,8 +365,8 @@ class GameInfo : IsPartOfGameInfoSerialization, HasGameInfoSerializationVersion
// We process player automatically if: // We process player automatically if:
while (isSimulation() || // simulation is active while (isSimulation() || // simulation is active
player.isAI() || // or player is AI player.isAI() || // or player is AI
isOnline && (player.isDefeated() || // or player is online defeated player.isDefeated() ||
player.isSpectator())) // or player is online spectator isOnline && player.isSpectator()) // or player is online spectator
{ {
// Starting preparations // Starting preparations