From 8c00098913d7e444208bcabd61949b6172f3deda Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= Date: Tue, 13 Mar 2018 11:02:10 +0100 Subject: [PATCH] Added checks to prevent sending to host connectionId --- MLAPI/MonoBehaviours/Core/NetworkingManager.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/MLAPI/MonoBehaviours/Core/NetworkingManager.cs b/MLAPI/MonoBehaviours/Core/NetworkingManager.cs index e290c1d..26c2e2f 100644 --- a/MLAPI/MonoBehaviours/Core/NetworkingManager.cs +++ b/MLAPI/MonoBehaviours/Core/NetworkingManager.cs @@ -319,6 +319,9 @@ namespace MLAPI { foreach (KeyValuePair pair in connectedClients) { + //Don't send messages to the -1 client id. That's the host + if (pair.Key == -1) + continue; NetworkTransport.SendQueuedMessages(ClientIdManager.GetClientIdKey(pair.Key).hostId, ClientIdManager.GetClientIdKey(pair.Key).connectionId, out error); }