Thank you kindly, MCortez, for a patch that:

This hooks up the LandManagementModule to handle the DeedParcelToGroup 
packet. Now people can start testing land assigned to and owned by groups.
Also fixes a viewer crash issue when searching for and then joining a group 
with an agent that is not already being tracked by groups server.
This commit is contained in:
Charles Krinke
2009-04-19 00:11:14 +00:00
parent 06f0515d14
commit a416e75ddb
4 changed files with 40 additions and 2 deletions

View File

@@ -552,7 +552,10 @@ namespace OpenSim.Region.OptionalModules.Avatar.XmlRpcGroups
{
GroupTitlesData title = new GroupTitlesData();
title.Name = role.Name;
title.Selected = agentMembership.ActiveRole == role.RoleID;
if (agentMembership != null)
{
title.Selected = agentMembership.ActiveRole == role.RoleID;
}
title.UUID = role.RoleID;
}