aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/World
diff options
context:
space:
mode:
authorUbitUmarov2017-05-14 04:17:48 +0100
committerUbitUmarov2017-05-14 04:17:48 +0100
commit9ab8ce1404259557cb1412af5b3296ced7228d5b (patch)
treea595e27699843a4a0aa09696abd84526650d97d6 /OpenSim/Region/CoreModules/World
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/Region/CoreModules/World')
-rw-r--r--OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs b/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs
index ce982a2..6f32a77 100644
--- a/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs
+++ b/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs
@@ -1948,6 +1948,9 @@ namespace OpenSim.Region.CoreModules.World.Land
1948 if (data.RegionHandle == m_scene.RegionInfo.RegionHandle) 1948 if (data.RegionHandle == m_scene.RegionInfo.RegionHandle)
1949 { 1949 {
1950 info = new GridRegion(m_scene.RegionInfo); 1950 info = new GridRegion(m_scene.RegionInfo);
1951 IDwellModule dwellModule = m_scene.RequestModuleInterface<IDwellModule>();
1952 if (dwellModule != null)
1953 data.LandData.Dwell = dwellModule.GetDwell(data.LandData);
1951 } 1954 }
1952 else 1955 else
1953 { 1956 {