fix build break. First argument of GetGroupRecord is not a uuid

slimupdates
Justin Clark-Casey (justincc) 2010-03-29 22:02:02 +01:00
parent e7e56e0143
commit 24fc4703d0
1 changed files with 1 additions and 1 deletions

View File

@ -597,7 +597,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.XmlRpcGroups
public GroupRecord GetGroupRecord(string name)
{
return m_groupData.GetGroupRecord(UUID.Zero, UUID.Zero, name);
return m_groupData.GetGroupRecord(null, UUID.Zero, name);
}
public void ActivateGroup(IClientAPI remoteClient, UUID groupID)