diff options
Diffstat (limited to 'OpenSim/Region/DataSnapshot')
-rw-r--r-- | OpenSim/Region/DataSnapshot/LandSnapshot.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Region/DataSnapshot/LandSnapshot.cs b/OpenSim/Region/DataSnapshot/LandSnapshot.cs index 5b75417..680a1fa 100644 --- a/OpenSim/Region/DataSnapshot/LandSnapshot.cs +++ b/OpenSim/Region/DataSnapshot/LandSnapshot.cs | |||
@@ -188,6 +188,12 @@ namespace OpenSim.Region.DataSnapshot.Providers | |||
188 | tpLocation.InnerText = loc.X.ToString() + "/" + loc.Y.ToString() + "/" + loc.Z.ToString(); | 188 | tpLocation.InnerText = loc.X.ToString() + "/" + loc.Y.ToString() + "/" + loc.Z.ToString(); |
189 | xmlparcel.AppendChild(tpLocation); | 189 | xmlparcel.AppendChild(tpLocation); |
190 | 190 | ||
191 | XmlNode infouuid = nodeFactory.CreateNode(XmlNodeType.Element, "infouuid", ""); | ||
192 | infouuid.InnerText = Util.BuildFakeParcelID( | ||
193 | m_scene.RegionInfo.RegionHandle, | ||
194 | (uint)loc.X, (uint)loc.Y).ToString(); | ||
195 | xmlparcel.AppendChild(infouuid); | ||
196 | |||
191 | XmlNode dwell = nodeFactory.CreateNode(XmlNodeType.Element, "dwell", ""); | 197 | XmlNode dwell = nodeFactory.CreateNode(XmlNodeType.Element, "dwell", ""); |
192 | dwell.InnerText = "0"; | 198 | dwell.InnerText = "0"; |
193 | xmlparcel.AppendChild(dwell); | 199 | xmlparcel.AppendChild(dwell); |