Remove hard limit on prim owners. The new LibOMV autosplits packets to
prevent overflowavinationmerge
parent
2412b3cb4a
commit
4765fd9cd0
|
@ -4432,14 +4432,14 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||||
|
|
||||||
if (notifyCount > 0)
|
if (notifyCount > 0)
|
||||||
{
|
{
|
||||||
if (notifyCount > 32)
|
// if (notifyCount > 32)
|
||||||
{
|
// {
|
||||||
m_log.InfoFormat(
|
// m_log.InfoFormat(
|
||||||
"[LAND]: More than {0} avatars own prims on this parcel. Only sending back details of first {0}"
|
// "[LAND]: More than {0} avatars own prims on this parcel. Only sending back details of first {0}"
|
||||||
+ " - a developer might want to investigate whether this is a hard limit", 32);
|
// + " - a developer might want to investigate whether this is a hard limit", 32);
|
||||||
|
//
|
||||||
notifyCount = 32;
|
// notifyCount = 32;
|
||||||
}
|
// }
|
||||||
|
|
||||||
ParcelObjectOwnersReplyPacket.DataBlock[] dataBlock
|
ParcelObjectOwnersReplyPacket.DataBlock[] dataBlock
|
||||||
= new ParcelObjectOwnersReplyPacket.DataBlock[notifyCount];
|
= new ParcelObjectOwnersReplyPacket.DataBlock[notifyCount];
|
||||||
|
|
Loading…
Reference in New Issue