We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b79d59 commit 521c019Copy full SHA for 521c019
Assets/Scripts/ConnectionManagement/ConnectionState/ClientReconnectingState.cs
@@ -25,9 +25,9 @@ class ClientReconnectingState : ClientConnectingState
25
26
public override void Enter()
27
{
28
+ m_NbAttempts = 0;
29
m_LobbyCode = m_LobbyServiceFacade.CurrentUnityLobby != null ? m_LobbyServiceFacade.CurrentUnityLobby.LobbyCode : "";
30
m_ReconnectCoroutine = m_ConnectionManager.StartCoroutine(ReconnectCoroutine());
- m_NbAttempts = 0;
31
}
32
33
public override void Exit()
0 commit comments