aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/World
diff options
context:
space:
mode:
authorTeravus Ovares (Dan Olivares)2009-08-29 23:39:27 -0400
committerTeravus Ovares (Dan Olivares)2009-08-29 23:39:27 -0400
commit33f36c9010254b14fe1b9fc1dd6bdd52ae1b16c9 (patch)
treeee67cd60c8c2cb1f760294e83ae57f9cbac7a4af /OpenSim/Region/CoreModules/World
parent* Fix the reason why physical vehicles have a problem in virtual regions. (diff)
downloadopensim-SC_OLD-33f36c9010254b14fe1b9fc1dd6bdd52ae1b16c9.zip
opensim-SC_OLD-33f36c9010254b14fe1b9fc1dd6bdd52ae1b16c9.tar.gz
opensim-SC_OLD-33f36c9010254b14fe1b9fc1dd6bdd52ae1b16c9.tar.bz2
opensim-SC_OLD-33f36c9010254b14fe1b9fc1dd6bdd52ae1b16c9.tar.xz
* Rename the RegionCombiner Module from PhysicsCombiner
Diffstat (limited to 'OpenSim/Region/CoreModules/World')
-rw-r--r--OpenSim/Region/CoreModules/World/Land/RegionCombinerModule.cs (renamed from OpenSim/Region/CoreModules/World/Land/PhysicsCombiner.cs)9
1 files changed, 5 insertions, 4 deletions
diff --git a/OpenSim/Region/CoreModules/World/Land/PhysicsCombiner.cs b/OpenSim/Region/CoreModules/World/Land/RegionCombinerModule.cs
index 8921085..5ba6f39 100644
--- a/OpenSim/Region/CoreModules/World/Land/PhysicsCombiner.cs
+++ b/OpenSim/Region/CoreModules/World/Land/RegionCombinerModule.cs
@@ -10,11 +10,11 @@ using OpenSim.Region.Framework.Scenes;
10 10
11namespace OpenSim.Region.CoreModules.World.Land 11namespace OpenSim.Region.CoreModules.World.Land
12{ 12{
13 public class PhysicsCombiner : ISharedRegionModule 13 public class RegionCombinerModule : ISharedRegionModule
14 { 14 {
15 private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); 15 private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
16 16
17 public string Name { get { return "PhysicsCombiner";} } 17 public string Name { get { return "RegionCombinerModule"; } }
18 public Type ReplaceableInterface 18 public Type ReplaceableInterface
19 { 19 {
20 get { return null; } 20 get { return null; }
@@ -23,10 +23,11 @@ namespace OpenSim.Region.CoreModules.World.Land
23 public Type ReplacableInterface { get { return null; } } 23 public Type ReplacableInterface { get { return null; } }
24 24
25 private Dictionary<UUID, RegionConnections> m_regions = new Dictionary<UUID, RegionConnections>(); 25 private Dictionary<UUID, RegionConnections> m_regions = new Dictionary<UUID, RegionConnections>();
26 private bool enabledYN = true; 26 private bool enabledYN = false;
27 public void Initialise(IConfigSource source) 27 public void Initialise(IConfigSource source)
28 { 28 {
29 29 IConfig myConfig = source.Configs["Startup"];
30 enabledYN = myConfig.GetBoolean("CombineContiguiousRegions", false);
30 } 31 }
31 32
32 public void Close() 33 public void Close()