Sfoglia il codice sorgente

Fix all common victory/defeat crashes

Dydzio 6 anni fa
parent
commit
492d6504b4
1 ha cambiato i file con 2 aggiunte e 0 eliminazioni
  1. 2 0
      client/CPlayerInterface.cpp

+ 2 - 0
client/CPlayerInterface.cpp

@@ -2175,11 +2175,13 @@ void CPlayerInterface::gameOver(PlayerColor player, const EVictoryLossCheckResul
 		if (victoryLossCheckResult.victory() && LOCPLINT == this)
 		{
 			// end game if current human player has won
+			CSH->sendClientDisconnecting();
 			requestReturningToMainMenu(true);
 		}
 		else if(CSH->howManyPlayerInterfaces() == 1 && !settings["session"]["spectate"].Bool())
 		{
 			//all human players eliminated
+			CSH->sendClientDisconnecting();
 			requestReturningToMainMenu(false);
 		}