aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Connectors/Land/LandServicesConnector.cs
diff options
context:
space:
mode:
authorUbitUmarov2017-05-14 07:52:50 +0100
committerUbitUmarov2017-05-14 07:52:50 +0100
commiteea247fcc5f29c767dc1e3b7f9a5616843256e8d (patch)
treeec27d1c12890efa30a2a04edb32c4190e265ba54 /OpenSim/Services/Connectors/Land/LandServicesConnector.cs
parentMerge branch 'master' into httptests (diff)
parentclear land object on delete (diff)
downloadopensim-SC-eea247fcc5f29c767dc1e3b7f9a5616843256e8d.zip
opensim-SC-eea247fcc5f29c767dc1e3b7f9a5616843256e8d.tar.gz
opensim-SC-eea247fcc5f29c767dc1e3b7f9a5616843256e8d.tar.bz2
opensim-SC-eea247fcc5f29c767dc1e3b7f9a5616843256e8d.tar.xz
Merge branch 'master' into httptests
Diffstat (limited to '')
-rw-r--r--OpenSim/Services/Connectors/Land/LandServicesConnector.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Services/Connectors/Land/LandServicesConnector.cs b/OpenSim/Services/Connectors/Land/LandServicesConnector.cs
index 047880a..5492e83 100644
--- a/OpenSim/Services/Connectors/Land/LandServicesConnector.cs
+++ b/OpenSim/Services/Connectors/Land/LandServicesConnector.cs
@@ -117,6 +117,8 @@ namespace OpenSim.Services.Connectors
117 landData.UserLocation = Vector3.Parse((string)hash["UserLocation"]); 117 landData.UserLocation = Vector3.Parse((string)hash["UserLocation"]);
118 if (hash["RegionAccess"] != null) 118 if (hash["RegionAccess"] != null)
119 regionAccess = (byte)Convert.ToInt32((string)hash["RegionAccess"]); 119 regionAccess = (byte)Convert.ToInt32((string)hash["RegionAccess"]);
120 if(hash["Dwell"] != null)
121 landData.Dwell = Convert.ToSingle((string)hash["Dwell"]);
120 m_log.DebugFormat("[LAND CONNECTOR]: Got land data for parcel {0}", landData.Name); 122 m_log.DebugFormat("[LAND CONNECTOR]: Got land data for parcel {0}", landData.Name);
121 } 123 }
122 catch (Exception e) 124 catch (Exception e)