From 4765fd9cd0d30c97c4ddfc706aa5daa55e57df32 Mon Sep 17 00:00:00 2001 From: Melanie Date: Sat, 27 Nov 2010 19:31:18 +0100 Subject: Remove hard limit on prim owners. The new LibOMV autosplits packets to prevent overflow --- OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'OpenSim/Region') diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs index 5419ede..f99fa16 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs @@ -4432,14 +4432,14 @@ namespace OpenSim.Region.ClientStack.LindenUDP if (notifyCount > 0) { - if (notifyCount > 32) - { - m_log.InfoFormat( - "[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); - - notifyCount = 32; - } +// if (notifyCount > 32) +// { +// m_log.InfoFormat( +// "[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); +// +// notifyCount = 32; +// } ParcelObjectOwnersReplyPacket.DataBlock[] dataBlock = new ParcelObjectOwnersReplyPacket.DataBlock[notifyCount]; -- cgit v1.1