Correct prim counts for group land. Correct MessageTransferModule startup

This commit is contained in:
Melanie Thielker
2008-11-17 08:15:43 +00:00
parent 598316c890
commit bb936d8a2f
2 changed files with 12 additions and 14 deletions

View File

@@ -827,8 +827,9 @@ namespace OpenSim.Region.Environment.Modules.World.Land
{
landData.OwnerPrims += prim_count;
}
else if (obj.GroupID == landData.GroupID ||
prim_owner == landData.GroupID)
else if ((obj.GroupID == landData.GroupID ||
prim_owner == landData.GroupID) &&
landData.GroupID != UUID.Zero)
{
landData.GroupPrims += prim_count;
}