Add repecting the min and max values back in
parent
e394e1c06f
commit
a5343c5404
|
@ -100,6 +100,18 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||||
get { return m_currentThrottle; }
|
get { return m_currentThrottle; }
|
||||||
set
|
set
|
||||||
{
|
{
|
||||||
|
if (value < m_minAllowableThrottle)
|
||||||
|
{
|
||||||
|
m_currentThrottle = m_minAllowableThrottle;
|
||||||
|
CalcBits();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (value > m_maxAllowableThrottle)
|
||||||
|
{
|
||||||
|
m_currentThrottle = m_maxAllowableThrottle;
|
||||||
|
CalcBits();
|
||||||
|
return;
|
||||||
|
}
|
||||||
m_currentThrottle = value;
|
m_currentThrottle = value;
|
||||||
|
|
||||||
CalcBits();
|
CalcBits();
|
||||||
|
|
Loading…
Reference in New Issue