aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-09-22 20:16:11 +0000
committerJustin Clarke Casey2008-09-22 20:16:11 +0000
commit878166622bb025a922fd768c14d18322d3e73027 (patch)
tree33855ce1312e771d1453e64ba68de6b9883b0f6f /OpenSim/Region/Communications/OGS1/OGS1GridServices.cs
parent* Apply http://opensimulator.org/mantis/view.php?id=2234 (diff)
downloadopensim-SC_OLD-878166622bb025a922fd768c14d18322d3e73027.zip
opensim-SC_OLD-878166622bb025a922fd768c14d18322d3e73027.tar.gz
opensim-SC_OLD-878166622bb025a922fd768c14d18322d3e73027.tar.bz2
opensim-SC_OLD-878166622bb025a922fd768c14d18322d3e73027.tar.xz
* Remove some old libsecondlife workarounds as suggested by jhurliman in http://opensimulator.org/mantis/view.php?id=2236
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Communications/OGS1/OGS1GridServices.cs9
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