fix gorpo softlock

This commit is contained in:
Mister_Nebula 2022-08-05 19:58:48 +01:00
parent 331d26d2e4
commit 8feb2e095c

View File

@ -301,7 +301,7 @@ public class WakeUpSync : NetworkBehaviour
if (CurrentState == State.Pausing && (PauseReason)CurrentReason == PauseReason.WaitingForAllPlayersToBeReady)
{
if (clientState == ClientState.AliveInSolarSystem && serverState == ServerState.InSolarSystem)
if ((clientState == ClientState.AliveInSolarSystem && serverState == ServerState.InSolarSystem) || (clientState == ClientState.AliveInEye && serverState == ServerState.InEye))
{
ResetTimeScale();
}