Removed debug logs

This commit is contained in:
Albin Corén 2018-04-20 12:47:06 +02:00
parent 916f4677f6
commit 0b3dec1bcf
2 changed files with 0 additions and 2 deletions

View File

@ -194,7 +194,6 @@ namespace MLAPI.MonoBehaviours.Core
protected void InvokeClientRpc(string methodName, params object[] methodParams)
{
Debug.LogError("InvokeRPc");
if (!NetworkingManager.singleton.isServer)
{
Debug.LogWarning("MLAPI: Cannot invoke ClientRpc from client");

View File

@ -406,7 +406,6 @@ namespace MLAPI.NetworkingManagerComponents.Core
internal static void HandleRpc(uint clientId, byte[] incommingData, int channelId)
{
Debug.LogError("RPC inc");
BitReader reader = new BitReader(incommingData);
uint networkId = reader.ReadUInt();
ushort orderId = reader.ReadUShort();