This commit is contained in:
Albin Corén 2018-03-29 06:02:07 +02:00
parent e41ced9e8f
commit 0593de44a5
2 changed files with 0 additions and 23 deletions

View File

@ -503,26 +503,6 @@ namespace MLAPI
//Custom message, invoke all message handlers
if(targeted)
{
/*
if(!MessageManager.targetedMessages.ContainsKey(messageType))
{
Debug.LogWarning("MLAPI: No handlers for the given messagetype");
return;
}
else if(!MessageManager.targetedMessages[messageType].ContainsKey(targetNetworkId))
{
Debug.LogWarning("MLAPI: No handlers for the given networkId");
return;
}
List<int> handlerIds = MessageManager.targetedMessages[messageType][targetNetworkId];
for (int i = 0; i < handlerIds.Count; i++)
{
if (isPassthrough)
MessageManager.messageCallbacks[messageType][handlerIds[i]](passthroughOrigin, incommingData);
else
MessageManager.messageCallbacks[messageType][handlerIds[i]](clientId, incommingData);
}
*/
if (!SpawnManager.spawnedObjects.ContainsKey(targetNetworkId))
{
Debug.LogWarning("MLAPI: No target for message found");

View File

@ -14,9 +14,6 @@ namespace MLAPI.NetworkingManagerComponents
internal static Dictionary<ushort, Dictionary<int, Action<int, byte[]>>> messageCallbacks;
internal static Dictionary<ushort, int> messageHandlerCounter;
internal static Dictionary<ushort, Stack<int>> releasedMessageHandlerCounters;
//Key: messageType, Value key: networkId, value value: handlerIds
//internal static Dictionary<ushort, Dictionary<uint, List<int>>> targetedMessages;
private static NetworkingManager netManager
{