increase the number of packets in Land queue that force terrain to delay patchs sending.

avinationmerge
UbitUmarov 2015-11-10 23:50:00 +00:00
부모 e096b49dd7
커밋 188b2d84c1
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제

파일 보기

@ -1210,7 +1210,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
public virtual bool CanSendLayerData()
{
int n = m_udpClient.GetPacketsQueuedCount(ThrottleOutPacketType.Land);
if ( n > 20)
if ( n > 128)
return false;
return true;
}