From f7f448bc787ec370dc004c5247f42efcf3aebe0e Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Wed, 5 Nov 2008 22:17:47 +0000 Subject: * 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 --- OpenSim/Region/ClientStack/LindenUDP/LLPacketThrottle.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'OpenSim/Region/ClientStack') diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLPacketThrottle.cs b/OpenSim/Region/ClientStack/LindenUDP/LLPacketThrottle.cs index 305a984..5037ea5 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLPacketThrottle.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLPacketThrottle.cs @@ -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; } -- cgit v1.1