If land is not group owned (group ID is always UUID.Zero) then don't check if a prim should be added to the group count
parent
8e668abc6d
commit
7bba0177fe
|
@ -219,8 +219,6 @@ namespace OpenSim.Region.CoreModules.World.Land
|
||||||
{
|
{
|
||||||
if (obj.OwnerID == landData.OwnerID)
|
if (obj.OwnerID == landData.OwnerID)
|
||||||
parcelCounts.Owner += partCount;
|
parcelCounts.Owner += partCount;
|
||||||
else if (landData.GroupID != UUID.Zero && obj.GroupID == landData.GroupID)
|
|
||||||
parcelCounts.Group += partCount;
|
|
||||||
else
|
else
|
||||||
parcelCounts.Others += partCount;
|
parcelCounts.Others += partCount;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue