diff options
Remove hard limit on prim owners. The new LibOMV autosplits packets to
prevent overflow
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 16 |
1 files changed, 8 insertions, 8 deletions
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 | |||
4432 | 4432 | ||
4433 | if (notifyCount > 0) | 4433 | if (notifyCount > 0) |
4434 | { | 4434 | { |
4435 | if (notifyCount > 32) | 4435 | // if (notifyCount > 32) |
4436 | { | 4436 | // { |
4437 | m_log.InfoFormat( | 4437 | // m_log.InfoFormat( |
4438 | "[LAND]: More than {0} avatars own prims on this parcel. Only sending back details of first {0}" | 4438 | // "[LAND]: More than {0} avatars own prims on this parcel. Only sending back details of first {0}" |
4439 | + " - a developer might want to investigate whether this is a hard limit", 32); | 4439 | // + " - a developer might want to investigate whether this is a hard limit", 32); |
4440 | 4440 | // | |
4441 | notifyCount = 32; | 4441 | // notifyCount = 32; |
4442 | } | 4442 | // } |
4443 | 4443 | ||
4444 | ParcelObjectOwnersReplyPacket.DataBlock[] dataBlock | 4444 | ParcelObjectOwnersReplyPacket.DataBlock[] dataBlock |
4445 | = new ParcelObjectOwnersReplyPacket.DataBlock[notifyCount]; | 4445 | = new ParcelObjectOwnersReplyPacket.DataBlock[notifyCount]; |