mirror of
https://github.com/opensim/opensim.git
synced 2026-08-04 08:06:27 +08:00
* 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
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user