diff options
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 2 | ||||
-rw-r--r-- | OpenSim/Region/DataSnapshot/LandSnapshot.cs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs index 36eaf95..5fda592 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | |||
@@ -7736,7 +7736,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
7736 | reply.Data.GlobalZ = pos.Z; | 7736 | reply.Data.GlobalZ = pos.Z; |
7737 | reply.Data.SimName = Utils.StringToBytes(info.RegionName); | 7737 | reply.Data.SimName = Utils.StringToBytes(info.RegionName); |
7738 | reply.Data.SnapshotID = land.SnapshotID; | 7738 | reply.Data.SnapshotID = land.SnapshotID; |
7739 | reply.Data.Dwell = 0; // TODO: not implemented yet | 7739 | reply.Data.Dwell = land.Dwell; |
7740 | reply.Data.SalePrice = land.SalePrice; | 7740 | reply.Data.SalePrice = land.SalePrice; |
7741 | reply.Data.AuctionID = (int)land.AuctionID; | 7741 | reply.Data.AuctionID = (int)land.AuctionID; |
7742 | 7742 | ||
diff --git a/OpenSim/Region/DataSnapshot/LandSnapshot.cs b/OpenSim/Region/DataSnapshot/LandSnapshot.cs index e6b8e82..1a7da1b 100644 --- a/OpenSim/Region/DataSnapshot/LandSnapshot.cs +++ b/OpenSim/Region/DataSnapshot/LandSnapshot.cs | |||
@@ -208,7 +208,7 @@ namespace OpenSim.Region.DataSnapshot.Providers | |||
208 | xmlparcel.AppendChild(infouuid); | 208 | xmlparcel.AppendChild(infouuid); |
209 | 209 | ||
210 | XmlNode dwell = nodeFactory.CreateNode(XmlNodeType.Element, "dwell", ""); | 210 | XmlNode dwell = nodeFactory.CreateNode(XmlNodeType.Element, "dwell", ""); |
211 | dwell.InnerText = "0"; | 211 | dwell.InnerText = parcel.Dwell.ToString(); |
212 | xmlparcel.AppendChild(dwell); | 212 | xmlparcel.AppendChild(dwell); |
213 | 213 | ||
214 | //TODO: figure how to figure out teleport system landData.landingType | 214 | //TODO: figure how to figure out teleport system landData.landingType |