mirror of
https://github.com/opensim/opensim.git
synced 2026-08-07 01:35:46 +08:00
fix GetPacketsQueuedCount typos in last commit
This commit is contained in:
@@ -351,7 +351,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||
public int GetPacketsQueuedCount(ThrottleOutPacketType throttleType)
|
||||
{
|
||||
int icat = (int)throttleType;
|
||||
if ((int)throttleType > 0 && icat < THROTTLE_CATEGORY_COUNT)
|
||||
if (icat > 0 && icat < THROTTLE_CATEGORY_COUNT)
|
||||
return m_packetOutboxes[icat].Count;
|
||||
else
|
||||
return 0;
|
||||
|
||||
Reference in New Issue
Block a user