From b629890e58512d9c88d773253bed9317db267890 Mon Sep 17 00:00:00 2001 From: Darvell Long Date: Mon, 1 Apr 2019 17:53:50 -0700 Subject: [PATCH] fix(custom-messages): Fixed incorrect signature for sending custom messages to multiple clients. --- MLAPI/MonoBehaviours/Core/NetworkingManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MLAPI/MonoBehaviours/Core/NetworkingManager.cs b/MLAPI/MonoBehaviours/Core/NetworkingManager.cs index 0663d0bc2b..e750a425de 100644 --- a/MLAPI/MonoBehaviours/Core/NetworkingManager.cs +++ b/MLAPI/MonoBehaviours/Core/NetworkingManager.cs @@ -195,7 +195,7 @@ internal void InvokeOnIncomingCustomMessage(ulong clientId, Stream stream) /// The message stream containing the data /// The channel to send the data on /// The security settings to apply to the message - public void SendCustomMessage(List clientIds, BitStream stream, string channel = null, SecuritySendFlags security = SecuritySendFlags.None) + public void SendCustomMessage(List clientIds, BitStream stream, string channel = null, SecuritySendFlags security = SecuritySendFlags.None) { if (!IsServer) {