* Fix capitalization typoes in packet throttle that happened to be the name of existing fields

* This should (hopefully) allow TestClient and stuff built on top of it to work again
* Will probably come back later and change variable names to stop this happening again
0.6.0-stable
Justin Clarke Casey 2008-11-05 22:17:47 +00:00
parent 892e7bf9fb
commit f7f448bc78
1 changed files with 2 additions and 2 deletions

View File

@ -56,8 +56,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP
{
m_throttleMultiplier = throttleMultiplier;
m_maxAllowableThrottle = (int)(max * throttleMultiplier);
m_minAllowableThrottle = (int)(Min * throttleMultiplier);
m_currentThrottle = (int)(Throttle * throttleMultiplier);
m_minAllowableThrottle = (int)(min * throttleMultiplier);
m_currentThrottle = (int)(throttle * throttleMultiplier);
m_currentBitsSent = 0;
}