Added checks to prevent sending to host connectionId
This commit is contained in:
parent
75418c42a8
commit
8c00098913
@ -319,6 +319,9 @@ namespace MLAPI
|
|||||||
{
|
{
|
||||||
foreach (KeyValuePair<int, NetworkedClient> pair in connectedClients)
|
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,
|
NetworkTransport.SendQueuedMessages(ClientIdManager.GetClientIdKey(pair.Key).hostId,
|
||||||
ClientIdManager.GetClientIdKey(pair.Key).connectionId, out error);
|
ClientIdManager.GetClientIdKey(pair.Key).connectionId, out error);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user