Fix another missing UUID before a ToString().

0.6.0-stable
Homer Horwitz 2008-09-13 21:14:24 +00:00
parent e8d51b76fe
commit 1ab0c0192f
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ namespace OpenSim.Region.DataSnapshot.Providers
XmlNode xmlobject = nodeFactory.CreateNode(XmlNodeType.Element, "object", "");
node = nodeFactory.CreateNode(XmlNodeType.Element, "uuid", "");
node.InnerText = obj.ToString();
node.InnerText = obj.UUID.ToString();
xmlobject.AppendChild(node);
SceneObjectPart m_rootPart = null;