* 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 again0.6.0-stable
parent
892e7bf9fb
commit
f7f448bc78
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue