Thank you, Fly-Man, for a patch that fixes propagating the group
id into the data snapshot properly Fixes Mantis #35450.6.5-rc1
parent
6b5a110857
commit
c856f21231
|
@ -224,7 +224,7 @@ namespace OpenSim.Region.DataSnapshot.Providers
|
|||
if (parcel.GroupID != UUID.Zero)
|
||||
{
|
||||
XmlNode groupblock = nodeFactory.CreateNode(XmlNodeType.Element, "group", "");
|
||||
XmlNode groupuuid = nodeFactory.CreateNode(XmlNodeType.Element, "uuid", "");
|
||||
XmlNode groupuuid = nodeFactory.CreateNode(XmlNodeType.Element, "groupuuid", "");
|
||||
groupuuid.InnerText = parcel.GroupID.ToString();
|
||||
groupblock.AppendChild(groupuuid);
|
||||
|
||||
|
|
Loading…
Reference in New Issue