diff options
author | UbitUmarov | 2017-05-14 07:52:50 +0100 |
---|---|---|
committer | UbitUmarov | 2017-05-14 07:52:50 +0100 |
commit | eea247fcc5f29c767dc1e3b7f9a5616843256e8d (patch) | |
tree | ec27d1c12890efa30a2a04edb32c4190e265ba54 /OpenSim/Services/Connectors/Land/LandServicesConnector.cs | |
parent | Merge branch 'master' into httptests (diff) | |
parent | clear land object on delete (diff) | |
download | opensim-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.cs | 2 |
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) |