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

0.7.1-dev
Justin Clark-Casey (justincc) 2011-04-02 01:53:47 +01:00
parent 8e668abc6d
commit 7bba0177fe
1 changed files with 0 additions and 2 deletions

View File

@ -219,8 +219,6 @@ namespace OpenSim.Region.CoreModules.World.Land
{
if (obj.OwnerID == landData.OwnerID)
parcelCounts.Owner += partCount;
else if (landData.GroupID != UUID.Zero && obj.GroupID == landData.GroupID)
parcelCounts.Group += partCount;
else
parcelCounts.Others += partCount;
}