Skip to content

Commit

Permalink
SendAll correctly returns results
Browse files Browse the repository at this point in the history
  • Loading branch information
Chykary committed Sep 11, 2020
1 parent ec84968 commit 056fb42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FizzyFacepunch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ public override bool ServerSend(List<int> connectionIds, int channelId, ArraySeg
{
byte[] data = new byte[segment.Count];
Array.Copy(segment.Array, segment.Offset, data, 0, segment.Count);
server.SendAll(connectionIds, data, channelId);
return server.SendAll(connectionIds, data, channelId);
}

return false;
Expand Down

0 comments on commit 056fb42

Please sign in to comment.