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 e8ab401 commit 26ffe3dCopy full SHA for 26ffe3d
Intersect.Server.Core/Networking/Client.cs
@@ -341,7 +341,7 @@ public void SendPackets()
341
continue;
342
}
343
344
- var (packet, mode, _) = tuple;
+ var (packet, mode, packetTime) = tuple;
345
346
try
347
{
@@ -362,7 +362,7 @@ public void SendPackets()
362
PacketSender.SentPackets++;
363
PacketSender.SentBytes += packet.Data.Length;
364
MetricsRoot.Instance.Network.TotalSentPacketProcessingTime.Record(
365
- Timing.Global.Milliseconds - tuple.Item3
+ Timing.Global.Milliseconds - packetTime
366
);
367
368
0 commit comments