diff options
author | UbitUmarov | 2017-05-14 04:17:48 +0100 |
---|---|---|
committer | UbitUmarov | 2017-05-14 04:17:48 +0100 |
commit | 9ab8ce1404259557cb1412af5b3296ced7228d5b (patch) | |
tree | a595e27699843a4a0aa09696abd84526650d97d6 /OpenSim/Region/CoreModules/World/Land | |
parent | fix some issue on parcels loading and make parcels dwell show something. Reso... (diff) | |
download | opensim-SC-9ab8ce1404259557cb1412af5b3296ced7228d5b.zip opensim-SC-9ab8ce1404259557cb1412af5b3296ced7228d5b.tar.gz opensim-SC-9ab8ce1404259557cb1412af5b3296ced7228d5b.tar.bz2 opensim-SC-9ab8ce1404259557cb1412af5b3296ced7228d5b.tar.xz |
fix remote requests for dwell, so dwell module still called
Diffstat (limited to 'OpenSim/Region/CoreModules/World/Land')
-rw-r--r-- | OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs | 3 |
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 | { |