diff options
Diffstat (limited to 'OpenSim/Region/Communications/OGS1')
-rw-r--r-- | OpenSim/Region/Communications/OGS1/OGS1GridServices.cs | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs index 537947b..a2d3823 100644 --- a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs +++ b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs | |||
@@ -1727,9 +1727,8 @@ namespace OpenSim.Region.Communications.OGS1 | |||
1727 | if (landData != null) | 1727 | if (landData != null) |
1728 | { | 1728 | { |
1729 | // for now, only push out the data we need for answering a ParcelInfoReqeust | 1729 | // for now, only push out the data we need for answering a ParcelInfoReqeust |
1730 | // FIXME: these Replace calls are necessary as LLVector3.Parse can't parse vectors with spaces in them. Can be removed as soon as we switch to a newer version | 1730 | hash["AABBMax"] = landData.AABBMax.ToString(); |
1731 | hash["AABBMax"] = landData.AABBMax.ToString().Replace(" ", ""); | 1731 | hash["AABBMin"] = landData.AABBMin.ToString(); |
1732 | hash["AABBMin"] = landData.AABBMin.ToString().Replace(" ", ""); | ||
1733 | hash["Area"] = landData.Area.ToString(); | 1732 | hash["Area"] = landData.Area.ToString(); |
1734 | hash["AuctionID"] = landData.AuctionID.ToString(); | 1733 | hash["AuctionID"] = landData.AuctionID.ToString(); |
1735 | hash["Description"] = landData.Description; | 1734 | hash["Description"] = landData.Description; |
@@ -1739,7 +1738,7 @@ namespace OpenSim.Region.Communications.OGS1 | |||
1739 | hash["OwnerID"] = landData.OwnerID.ToString(); | 1738 | hash["OwnerID"] = landData.OwnerID.ToString(); |
1740 | hash["SalePrice"] = landData.SalePrice.ToString(); | 1739 | hash["SalePrice"] = landData.SalePrice.ToString(); |
1741 | hash["SnapshotID"] = landData.SnapshotID.ToString(); | 1740 | hash["SnapshotID"] = landData.SnapshotID.ToString(); |
1742 | hash["UserLocation"] = landData.UserLocation.ToString().Replace(" ", ""); | 1741 | hash["UserLocation"] = landData.UserLocation.ToString(); |
1743 | } | 1742 | } |
1744 | 1743 | ||
1745 | XmlRpcResponse response = new XmlRpcResponse(); | 1744 | XmlRpcResponse response = new XmlRpcResponse(); |
@@ -1747,4 +1746,4 @@ namespace OpenSim.Region.Communications.OGS1 | |||
1747 | return response; | 1746 | return response; |
1748 | } | 1747 | } |
1749 | } | 1748 | } |
1750 | } | 1749 | } \ No newline at end of file |