Skip to content

Commit 5a32f50

Browse files
committed
Fixed ignored security send flag on performance RPC
1 parent 86b7754 commit 5a32f50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -875,7 +875,7 @@ internal void SendServerRPCPerformance(ulong hash, Stream messageStream, string
875875
}
876876
else
877877
{
878-
InternalMessageHandler.Send(NetworkingManager.Singleton.ServerClientId, MLAPIConstants.MLAPI_SERVER_RPC, string.IsNullOrEmpty(channel) ? "MLAPI_DEFAULT_MESSAGE" : channel, stream, SecuritySendFlags.None);
878+
InternalMessageHandler.Send(NetworkingManager.Singleton.ServerClientId, MLAPIConstants.MLAPI_SERVER_RPC, string.IsNullOrEmpty(channel) ? "MLAPI_DEFAULT_MESSAGE" : channel, stream, security);
879879
}
880880
}
881881
}

0 commit comments

Comments
 (0)