diff options
author | Justin Clark-Casey (justincc) | 2011-10-15 03:03:05 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-10-15 03:03:05 +0100 |
commit | ddf54b5537f2701deeb615ef8e1eeef20b746ea1 (patch) | |
tree | 96b274be466fda1c0056add9a66d6ea3715fdcd2 /OpenSim/Region | |
parent | fetch physical_prim switch from [Startup] config from inside scene, as is don... (diff) | |
download | opensim-SC_OLD-ddf54b5537f2701deeb615ef8e1eeef20b746ea1.zip opensim-SC_OLD-ddf54b5537f2701deeb615ef8e1eeef20b746ea1.tar.gz opensim-SC_OLD-ddf54b5537f2701deeb615ef8e1eeef20b746ea1.tar.bz2 opensim-SC_OLD-ddf54b5537f2701deeb615ef8e1eeef20b746ea1.tar.xz |
move see_into_this_sim_from_neighbor [Startup] flag parsing into Scene with the others
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/Application/ConfigurationLoader.cs | 3 | ||||
-rw-r--r-- | OpenSim/Region/Application/OpenSimBase.cs | 2 | ||||
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.cs | 5 |
3 files changed, 3 insertions, 7 deletions
diff --git a/OpenSim/Region/Application/ConfigurationLoader.cs b/OpenSim/Region/Application/ConfigurationLoader.cs index b496108..d0f6ab7 100644 --- a/OpenSim/Region/Application/ConfigurationLoader.cs +++ b/OpenSim/Region/Application/ConfigurationLoader.cs | |||
@@ -362,9 +362,6 @@ namespace OpenSim | |||
362 | { | 362 | { |
363 | m_configSettings.PhysicsEngine = startupConfig.GetString("physics"); | 363 | m_configSettings.PhysicsEngine = startupConfig.GetString("physics"); |
364 | m_configSettings.MeshEngineName = startupConfig.GetString("meshing"); | 364 | m_configSettings.MeshEngineName = startupConfig.GetString("meshing"); |
365 | |||
366 | m_configSettings.See_into_region_from_neighbor = startupConfig.GetBoolean("see_into_this_sim_from_neighbor", true); | ||
367 | |||
368 | m_configSettings.StorageDll = startupConfig.GetString("storage_plugin"); | 365 | m_configSettings.StorageDll = startupConfig.GetString("storage_plugin"); |
369 | 366 | ||
370 | m_configSettings.ClientstackDll | 367 | m_configSettings.ClientstackDll |
diff --git a/OpenSim/Region/Application/OpenSimBase.cs b/OpenSim/Region/Application/OpenSimBase.cs index 19329dd..553786b 100644 --- a/OpenSim/Region/Application/OpenSimBase.cs +++ b/OpenSim/Region/Application/OpenSimBase.cs | |||
@@ -660,7 +660,7 @@ namespace OpenSim | |||
660 | return new Scene( | 660 | return new Scene( |
661 | regionInfo, circuitManager, sceneGridService, | 661 | regionInfo, circuitManager, sceneGridService, |
662 | simDataService, estateDataService, m_moduleLoader, false, | 662 | simDataService, estateDataService, m_moduleLoader, false, |
663 | m_configSettings.See_into_region_from_neighbor, m_config.Source, m_version); | 663 | m_config.Source, m_version); |
664 | } | 664 | } |
665 | 665 | ||
666 | protected void ShutdownClientServer(RegionInfo whichRegion) | 666 | protected void ShutdownClientServer(RegionInfo whichRegion) |
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index 7295a38..5876da9 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs | |||
@@ -538,7 +538,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
538 | SceneCommunicationService sceneGridService, | 538 | SceneCommunicationService sceneGridService, |
539 | ISimulationDataService simDataService, IEstateDataService estateDataService, | 539 | ISimulationDataService simDataService, IEstateDataService estateDataService, |
540 | ModuleLoader moduleLoader, bool dumpAssetsToFile, | 540 | ModuleLoader moduleLoader, bool dumpAssetsToFile, |
541 | bool SeeIntoRegionFromNeighbor, IConfigSource config, string simulatorVersion) | 541 | IConfigSource config, string simulatorVersion) |
542 | : this(regInfo) | 542 | : this(regInfo) |
543 | { | 543 | { |
544 | m_config = config; | 544 | m_config = config; |
@@ -554,8 +554,6 @@ namespace OpenSim.Region.Framework.Scenes | |||
554 | m_EstateDataService = estateDataService; | 554 | m_EstateDataService = estateDataService; |
555 | m_regionHandle = m_regInfo.RegionHandle; | 555 | m_regionHandle = m_regInfo.RegionHandle; |
556 | m_regionName = m_regInfo.RegionName; | 556 | m_regionName = m_regInfo.RegionName; |
557 | |||
558 | m_seeIntoRegionFromNeighbor = SeeIntoRegionFromNeighbor; | ||
559 | 557 | ||
560 | m_asyncSceneObjectDeleter = new AsyncSceneObjectGroupDeleter(this); | 558 | m_asyncSceneObjectDeleter = new AsyncSceneObjectGroupDeleter(this); |
561 | m_asyncSceneObjectDeleter.Enabled = true; | 559 | m_asyncSceneObjectDeleter.Enabled = true; |
@@ -703,6 +701,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
703 | m_clampPrimSize = true; | 701 | m_clampPrimSize = true; |
704 | } | 702 | } |
705 | 703 | ||
704 | m_seeIntoRegionFromNeighbor = startupConfig.GetBoolean("see_into_this_sim_from_neighbor", true); | ||
706 | m_trustBinaries = startupConfig.GetBoolean("TrustBinaries", m_trustBinaries); | 705 | m_trustBinaries = startupConfig.GetBoolean("TrustBinaries", m_trustBinaries); |
707 | m_allowScriptCrossings = startupConfig.GetBoolean("AllowScriptCrossing", m_allowScriptCrossings); | 706 | m_allowScriptCrossings = startupConfig.GetBoolean("AllowScriptCrossing", m_allowScriptCrossings); |
708 | m_dontPersistBefore = | 707 | m_dontPersistBefore = |