From 878166622bb025a922fd768c14d18322d3e73027 Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Mon, 22 Sep 2008 20:16:11 +0000 Subject: * Remove some old libsecondlife workarounds as suggested by jhurliman in http://opensimulator.org/mantis/view.php?id=2236 --- OpenSim/Region/Communications/OGS1/OGS1GridServices.cs | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'OpenSim/Region/Communications/OGS1/OGS1GridServices.cs') 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 if (landData != null) { // for now, only push out the data we need for answering a ParcelInfoReqeust - // 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 - hash["AABBMax"] = landData.AABBMax.ToString().Replace(" ", ""); - hash["AABBMin"] = landData.AABBMin.ToString().Replace(" ", ""); + hash["AABBMax"] = landData.AABBMax.ToString(); + hash["AABBMin"] = landData.AABBMin.ToString(); hash["Area"] = landData.Area.ToString(); hash["AuctionID"] = landData.AuctionID.ToString(); hash["Description"] = landData.Description; @@ -1739,7 +1738,7 @@ namespace OpenSim.Region.Communications.OGS1 hash["OwnerID"] = landData.OwnerID.ToString(); hash["SalePrice"] = landData.SalePrice.ToString(); hash["SnapshotID"] = landData.SnapshotID.ToString(); - hash["UserLocation"] = landData.UserLocation.ToString().Replace(" ", ""); + hash["UserLocation"] = landData.UserLocation.ToString(); } XmlRpcResponse response = new XmlRpcResponse(); @@ -1747,4 +1746,4 @@ namespace OpenSim.Region.Communications.OGS1 return response; } } -} +} \ No newline at end of file -- cgit v1.1