diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/ClientStack/ClientView.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/ClientView.cs b/OpenSim/Region/ClientStack/ClientView.cs index 8b93c5f..90002c3 100644 --- a/OpenSim/Region/ClientStack/ClientView.cs +++ b/OpenSim/Region/ClientStack/ClientView.cs | |||
@@ -2371,7 +2371,7 @@ namespace OpenSim.Region.ClientStack | |||
2371 | // wait for the timer to fire to put things into the | 2371 | // wait for the timer to fire to put things into the |
2372 | // output queue | 2372 | // output queue |
2373 | 2373 | ||
2374 | if(q.Count == 0 && TypeBytesSent <= ((int)(Throttle / throttleTimeDivisor))) | 2374 | if((q.Count == 0) && (TypeBytesSent <= ((int)(Throttle / throttleTimeDivisor)))) |
2375 | { | 2375 | { |
2376 | bytesSent += item.Packet.ToBytes().Length; | 2376 | bytesSent += item.Packet.ToBytes().Length; |
2377 | TypeBytesSent += item.Packet.ToBytes().Length; | 2377 | TypeBytesSent += item.Packet.ToBytes().Length; |