From 6e67204ddc52e3b631b1707705d70317463bb8ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Straubmeier?= Date: Tue, 18 Aug 2020 12:06:27 +0200 Subject: [PATCH] Don't try to remove the connection poll group in OnDisconnected (causes assert spam) --- Facepunch.Steamworks/Networking/SocketManager.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/Facepunch.Steamworks/Networking/SocketManager.cs b/Facepunch.Steamworks/Networking/SocketManager.cs index 6c67edf..637d875 100644 --- a/Facepunch.Steamworks/Networking/SocketManager.cs +++ b/Facepunch.Steamworks/Networking/SocketManager.cs @@ -89,8 +89,6 @@ namespace Steamworks /// public virtual void OnDisconnected( Connection connection, ConnectionInfo info ) { - SteamNetworkingSockets.Internal.SetConnectionPollGroup( connection, 0 ); - if ( Interface != null ) { Interface.OnDisconnected( connection, info );