aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Connectors
diff options
context:
space:
mode:
authorUbitUmarov2017-05-14 04:17:48 +0100
committerUbitUmarov2017-05-14 04:17:48 +0100
commit9ab8ce1404259557cb1412af5b3296ced7228d5b (patch)
treea595e27699843a4a0aa09696abd84526650d97d6 /OpenSim/Services/Connectors
parentfix some issue on parcels loading and make parcels dwell show something. Reso... (diff)
downloadopensim-SC_OLD-9ab8ce1404259557cb1412af5b3296ced7228d5b.zip
opensim-SC_OLD-9ab8ce1404259557cb1412af5b3296ced7228d5b.tar.gz
opensim-SC_OLD-9ab8ce1404259557cb1412af5b3296ced7228d5b.tar.bz2
opensim-SC_OLD-9ab8ce1404259557cb1412af5b3296ced7228d5b.tar.xz
fix remote requests for dwell, so dwell module still called
Diffstat (limited to 'OpenSim/Services/Connectors')
-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)