mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 17:32:42 +08:00
Thank you, Fly-Man, for a patch that fixes propagating the group
id into the data snapshot properly Fixes Mantis #3545
This commit is contained in:
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user