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 fe419b1 commit 90bce97Copy full SHA for 90bce97
Intersect.Client.Core/MonoGame/Network/MonoSocket.cs
@@ -251,7 +251,7 @@ public override void Update()
251
);
252
}
253
254
- if (MainMenu.LastNetworkStatusChangeTime + ServerStatusPingInterval * 1.5f < now)
+ if (MainMenu.LastNetworkStatusChangeTime + (int)(ServerStatusPingInterval * 1.5f) < now)
255
{
256
MainMenu.SetNetworkStatus(NetworkStatus.Offline);
257
Intersect.Client.Core/Networking/Network.cs
@@ -99,7 +99,6 @@ public static bool InterruptDisconnectsIfConnected()
99
100
private static void OnConnected(INetworkLayerInterface sender, ConnectionEventArgs connectionEventArgs)
101
102
- Globals.WaitingOnServer = false;
103
Globals.SoftLogout = false;
104
105
0 commit comments