Added checks to prevent sending to host connectionId

This commit is contained in:
Albin Corén 2018-03-13 11:02:10 +01:00
parent 75418c42a8
commit 8c00098913

View File

@ -319,6 +319,9 @@ namespace MLAPI
{
foreach (KeyValuePair<int, NetworkedClient> 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);
}