aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/World/Land/LandChannel.cs
diff options
context:
space:
mode:
authorUbitUmarov2014-07-31 03:10:50 +0100
committerUbitUmarov2014-07-31 03:10:50 +0100
commita5e9429f2bb2276486cc2f1ed2249e14fba90d6a (patch)
tree30373d517c5adbea792afb993d8a99546022b26b /OpenSim/Region/CoreModules/World/Land/LandChannel.cs
parentmake HandlerRegionHandshakeReply processing async and delay it a bit. This (diff)
downloadopensim-SC_OLD-a5e9429f2bb2276486cc2f1ed2249e14fba90d6a.zip
opensim-SC_OLD-a5e9429f2bb2276486cc2f1ed2249e14fba90d6a.tar.gz
opensim-SC_OLD-a5e9429f2bb2276486cc2f1ed2249e14fba90d6a.tar.bz2
opensim-SC_OLD-a5e9429f2bb2276486cc2f1ed2249e14fba90d6a.tar.xz
MESS: changes in MakeRootAgent and CompleteMovement reordering things.
Added sending of land overlay and parcel information. This in order to only send avatar related information after having its position well defined and on the right parcel. THIS MAY STILL BE BAD :)
Diffstat (limited to 'OpenSim/Region/CoreModules/World/Land/LandChannel.cs')
-rw-r--r--OpenSim/Region/CoreModules/World/Land/LandChannel.cs8
1 files changed, 7 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/World/Land/LandChannel.cs b/OpenSim/Region/CoreModules/World/Land/LandChannel.cs
index beb0a24..378826d 100644
--- a/OpenSim/Region/CoreModules/World/Land/LandChannel.cs
+++ b/OpenSim/Region/CoreModules/World/Land/LandChannel.cs
@@ -213,7 +213,13 @@ namespace OpenSim.Region.CoreModules.World.Land
213 m_landManagementModule.setParcelOtherCleanTime(remoteClient, localID, otherCleanTime); 213 m_landManagementModule.setParcelOtherCleanTime(remoteClient, localID, otherCleanTime);
214 } 214 }
215 } 215 }
216 216 public void sendClientInitialLandInfo(IClientAPI remoteClient)
217 {
218 if (m_landManagementModule != null)
219 {
220 m_landManagementModule.sendClientInitialLandInfo(remoteClient);
221 }
222 }
217 #endregion 223 #endregion
218 } 224 }
219} 225}