mirror of
https://github.com/opensim/opensim.git
synced 2026-08-07 17:55:48 +08:00
Correct prim counts for group land. Correct MessageTransferModule startup
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user