Skip to content

Commit

Permalink
fix: SendToObservers missing result variable
Browse files Browse the repository at this point in the history
  • Loading branch information
miwarnec committed Mar 4, 2020
1 parent 66d858e commit 9c09c26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Assets/Mirror/Runtime/NetworkServer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ internal static void ActivateHostScene()
// send to all internet connections at once
if (connectionIdsCache.Count > 0)
{
result &= NetworkConnectionToClient.Send(connectionIdsCache, segment, channelId);
NetworkConnectionToClient.Send(connectionIdsCache, segment, channelId);
}

NetworkDiagnostics.OnSend(msg, Channels.DefaultReliable, segment.Count, identity.observers.Count);
Expand Down

0 comments on commit 9c09c26

Please sign in to comment.