diff options
Diffstat (limited to 'OpenSim/Region/Application/OpenSimBase.cs')
-rw-r--r-- | OpenSim/Region/Application/OpenSimBase.cs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/OpenSim/Region/Application/OpenSimBase.cs b/OpenSim/Region/Application/OpenSimBase.cs index ebcea28..200c7bf 100644 --- a/OpenSim/Region/Application/OpenSimBase.cs +++ b/OpenSim/Region/Application/OpenSimBase.cs | |||
@@ -110,14 +110,15 @@ namespace OpenSim | |||
110 | 110 | ||
111 | protected List<IApplicationPlugin> m_plugins = new List<IApplicationPlugin>(); | 111 | protected List<IApplicationPlugin> m_plugins = new List<IApplicationPlugin>(); |
112 | 112 | ||
113 | protected IConfigSource m_finalConfig = null; | 113 | /// <value> |
114 | protected OpenSimConfigSource m_config; | 114 | /// The config information passed into the OpenSim region server. |
115 | 115 | /// </value> | |
116 | public OpenSimConfigSource ConfigSource | 116 | public OpenSimConfigSource ConfigSource |
117 | { | 117 | { |
118 | get { return m_config; } | 118 | get { return m_config; } |
119 | set { m_config = value; } | 119 | set { m_config = value; } |
120 | } | 120 | } |
121 | protected OpenSimConfigSource m_config; | ||
121 | 122 | ||
122 | public List<IClientNetworkServer> ClientServers | 123 | public List<IClientNetworkServer> ClientServers |
123 | { | 124 | { |