We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c696d5b commit 9253c3bCopy full SHA for 9253c3b
RLBotCS/Server/ServerMessage/ServerContext.cs
@@ -55,8 +55,7 @@ public void DistributeMessage(SessionMessage message)
55
{
56
if (!writer.TryWrite(message))
57
58
- uint missedMessages = MissedMessagesCount.GetValueOrDefault(id);
59
- missedMessages += 1;
+ uint missedMessages = MissedMessagesCount.GetValueOrDefault(id) + 1;
60
MissedMessagesCount[id] = missedMessages;
61
62
// Log warning with exponential backoff,
0 commit comments