refactor: Use SOP.Flags rather than SOP.ObjectFlags

This commit is contained in:
Justin Clark-Casey (justincc)
2010-08-13 20:23:53 +01:00
parent c98c6a2930
commit 39a748b47a
9 changed files with 25 additions and 25 deletions

View File

@@ -135,7 +135,7 @@ namespace OpenSim.Region.DataSnapshot.Providers
xmlobject.AppendChild(node);
node = nodeFactory.CreateNode(XmlNodeType.Element, "flags", "");
node.InnerText = String.Format("{0:x}", m_rootPart.ObjectFlags);
node.InnerText = String.Format("{0:x}", (uint)m_rootPart.Flags);
xmlobject.AppendChild(node);
node = nodeFactory.CreateNode(XmlNodeType.Element, "regionuuid", "");