Skip to content

Commit 80f5870

Browse files
committed
reduced nb of reconnect attempts to 1
1 parent 0c7a4d5 commit 80f5870

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Assets/BossRoom/Scripts/Shared/Net/ConnectionManagement/ClientGameNetPortal.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public class ClientGameNetPortal : MonoBehaviour
3131
/// Time in seconds before the client considers a lack of server response a timeout
3232
/// </summary>
3333
private const int k_TimeoutDuration = 10;
34-
const int k_NbReconnectAttempts = 3;
34+
const int k_NbReconnectAttempts = 1;
3535

3636
/// <summary>
3737
/// This event fires when the client sent out a request to start the client, but failed to hear back after an allotted amount of

0 commit comments

Comments
 (0)