aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application/OpenSimBase.cs
diff options
context:
space:
mode:
authormeta72010-08-20 11:01:03 -0700
committermeta72010-08-20 11:01:03 -0700
commit187ccd72f0883480b1dd027fce99fc99c2803eb6 (patch)
tree654e330ec4c46b5b062bae9350e5d4966a0c6873 /OpenSim/Region/Application/OpenSimBase.cs
parentGet maturity level from access number. This addresses mantis #269 (diff)
parentAdd some maptile options, change maptile generation from OpenSimBase to Scene (diff)
downloadopensim-SC-187ccd72f0883480b1dd027fce99fc99c2803eb6.zip
opensim-SC-187ccd72f0883480b1dd027fce99fc99c2803eb6.tar.gz
opensim-SC-187ccd72f0883480b1dd027fce99fc99c2803eb6.tar.bz2
opensim-SC-187ccd72f0883480b1dd027fce99fc99c2803eb6.tar.xz
Merge branch 'careminster-presence-refactor' of ssh://3dhosting.de/var/git/careminster into careminster-presence-refactor
Diffstat (limited to 'OpenSim/Region/Application/OpenSimBase.cs')
-rw-r--r--OpenSim/Region/Application/OpenSimBase.cs13
1 files changed, 0 insertions, 13 deletions
diff --git a/OpenSim/Region/Application/OpenSimBase.cs b/OpenSim/Region/Application/OpenSimBase.cs
index c08da18..4ef0b1b 100644
--- a/OpenSim/Region/Application/OpenSimBase.cs
+++ b/OpenSim/Region/Application/OpenSimBase.cs
@@ -390,19 +390,6 @@ namespace OpenSim
390 // Prims have to be loaded after module configuration since some modules may be invoked during the load 390 // Prims have to be loaded after module configuration since some modules may be invoked during the load
391 scene.LoadPrimsFromStorage(regionInfo.originRegionID); 391 scene.LoadPrimsFromStorage(regionInfo.originRegionID);
392 392
393 if (scene.SnmpService != null)
394 {
395 scene.SnmpService.BootInfo("Creating region texture", scene);
396 }
397
398 // moved these here as the map texture has to be created after the modules are initialized
399 // and has to happen before the region is registered with the grid.
400 IWorldMapModule mapModule = scene.RequestModuleInterface<IWorldMapModule>();
401 if (mapModule != null)
402 mapModule.GenerateMaptile();
403 else
404 m_log.WarnFormat("[STARTUP]: No map module available to generate map tile");
405
406 // TODO : Try setting resource for region xstats here on scene 393 // TODO : Try setting resource for region xstats here on scene
407 MainServer.Instance.AddStreamHandler(new Region.Framework.Scenes.RegionStatsHandler(regionInfo)); 394 MainServer.Instance.AddStreamHandler(new Region.Framework.Scenes.RegionStatsHandler(regionInfo));
408 395