aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/SceneBase.cs
diff options
context:
space:
mode:
authorDiva Canto2014-06-01 10:06:59 -0700
committerDiva Canto2014-06-01 10:06:59 -0700
commit0eaca7aafb0365fb21b6d1ce8e1590845a6b5125 (patch)
tree1120139228e2c934de544f3288b306699018bb50 /OpenSim/Region/Framework/Scenes/SceneBase.cs
parentFixed a few things pertaining to interfacing with the estate service. Specifi... (diff)
parentMove the generation of the multi-resolution map tiles off the main (diff)
downloadopensim-SC_OLD-0eaca7aafb0365fb21b6d1ce8e1590845a6b5125.zip
opensim-SC_OLD-0eaca7aafb0365fb21b6d1ce8e1590845a6b5125.tar.gz
opensim-SC_OLD-0eaca7aafb0365fb21b6d1ce8e1590845a6b5125.tar.bz2
opensim-SC_OLD-0eaca7aafb0365fb21b6d1ce8e1590845a6b5125.tar.xz
Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/SceneBase.cs')
-rw-r--r--OpenSim/Region/Framework/Scenes/SceneBase.cs7
1 files changed, 6 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneBase.cs b/OpenSim/Region/Framework/Scenes/SceneBase.cs
index 4208669..0445268 100644
--- a/OpenSim/Region/Framework/Scenes/SceneBase.cs
+++ b/OpenSim/Region/Framework/Scenes/SceneBase.cs
@@ -213,7 +213,12 @@ namespace OpenSim.Region.Framework.Scenes
213 /// <param name="RemoteClient">Client to send to</param> 213 /// <param name="RemoteClient">Client to send to</param>
214 public virtual void SendLayerData(IClientAPI RemoteClient) 214 public virtual void SendLayerData(IClientAPI RemoteClient)
215 { 215 {
216 RemoteClient.SendLayerData(Heightmap.GetFloatsSerialised()); 216 // RemoteClient.SendLayerData(Heightmap.GetFloatsSerialised());
217 ITerrainModule terrModule = RequestModuleInterface<ITerrainModule>();
218 if (terrModule != null)
219 {
220 terrModule.PushTerrain(RemoteClient);
221 }
217 } 222 }
218 223
219 #endregion 224 #endregion