diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.cs | 5 | ||||
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneBase.cs | 6 |
2 files changed, 11 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index 7872a6e..5270d11 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs | |||
@@ -135,6 +135,11 @@ namespace OpenSim.Region.Framework.Scenes | |||
135 | { | 135 | { |
136 | get { return m_capsModule; } | 136 | get { return m_capsModule; } |
137 | } | 137 | } |
138 | |||
139 | public IConfigSource Config | ||
140 | { | ||
141 | get { return m_config; } | ||
142 | } | ||
138 | 143 | ||
139 | // Central Update Loop | 144 | // Central Update Loop |
140 | 145 | ||
diff --git a/OpenSim/Region/Framework/Scenes/SceneBase.cs b/OpenSim/Region/Framework/Scenes/SceneBase.cs index 6ab7e7a..c317c2a 100644 --- a/OpenSim/Region/Framework/Scenes/SceneBase.cs +++ b/OpenSim/Region/Framework/Scenes/SceneBase.cs | |||
@@ -31,6 +31,7 @@ using System.Reflection; | |||
31 | using System.Threading; | 31 | using System.Threading; |
32 | using OpenMetaverse; | 32 | using OpenMetaverse; |
33 | using log4net; | 33 | using log4net; |
34 | using Nini.Config; | ||
34 | using OpenSim.Framework; | 35 | using OpenSim.Framework; |
35 | using OpenSim.Framework.Console; | 36 | using OpenSim.Framework.Console; |
36 | using OpenSim.Framework.Communications.Cache; | 37 | using OpenSim.Framework.Communications.Cache; |
@@ -50,6 +51,11 @@ namespace OpenSim.Region.Framework.Scenes | |||
50 | 51 | ||
51 | #region Fields | 52 | #region Fields |
52 | 53 | ||
54 | public IConfigSource Config | ||
55 | { | ||
56 | get { return null; } | ||
57 | } | ||
58 | |||
53 | /// <value> | 59 | /// <value> |
54 | /// All the region modules attached to this scene. | 60 | /// All the region modules attached to this scene. |
55 | /// </value> | 61 | /// </value> |